Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Issue 2664873002: Add logdog_helper script. (Closed)

Created:
3 years, 10 months ago by mikecase (-- gone --)
Modified:
3 years, 10 months ago
Reviewers:
dnj, jbudorick, hzl
CC:
agrieve+watch_chromium.org, chromium-reviews, jbudorick+watch_chromium.org, mikecase+watch_chromium.org
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Add logdog_helper script. Add helper script to manage uploading data to logdog from the test runner. Also, add new 'links' entry to results.json file which will primarily contain logdog URLs. Review-Url: https://codereview.chromium.org/2664873002 Cr-Commit-Position: refs/heads/master@{#448080} Committed: https://chromium.googlesource.com/chromium/src/+/c422ef3ada9263e775bd13bef3b0657197d84222

Patch Set 1 #

Patch Set 2 : Add logdog_helper script. #

Patch Set 3 : Add logdog_helper script. #

Total comments: 21

Patch Set 4 : Add logdog_helper script. #

Total comments: 4

Patch Set 5 : Add logdog_helper script #

Patch Set 6 : Add logdog_helper script. #

Total comments: 2

Patch Set 7 : Add logdog_helper script. #

Total comments: 6

Patch Set 8 : Add logdog_helper script. #

Patch Set 9 : Update one use of AddLink to SetLink I missed #

Unified diffs Side-by-side diffs Delta from patch set Stats (+263 lines, -73 lines) Patch
M build/android/PRESUBMIT.py View 1 2 3 4 5 6 7 1 chunk +1 line, -0 lines 0 comments Download
M build/android/pylib/android/logdog_logcat_monitor.py View 1 2 3 4 chunks +6 lines, -23 lines 0 comments Download
M build/android/pylib/base/base_test_result.py View 1 2 3 2 chunks +16 lines, -11 lines 0 comments Download
M build/android/pylib/local/device/local_device_gtest_run.py View 1 2 3 2 chunks +4 lines, -3 lines 0 comments Download
M build/android/pylib/local/device/local_device_instrumentation_test_run.py View 1 2 3 4 5 6 7 8 3 chunks +5 lines, -4 lines 0 comments Download
M build/android/pylib/results/json_results.py View 1 2 3 4 5 3 chunks +8 lines, -2 lines 0 comments Download
A build/android/pylib/utils/decorators.py View 1 2 3 4 5 6 7 1 chunk +37 lines, -0 lines 0 comments Download
A build/android/pylib/utils/decorators_test.py View 1 2 3 4 5 6 7 1 chunk +104 lines, -0 lines 0 comments Download
A build/android/pylib/utils/logdog_helper.py View 1 2 3 4 5 6 1 chunk +80 lines, -0 lines 0 comments Download
M build/android/test_runner.pydeps View 1 2 3 4 5 6 1 chunk +2 lines, -0 lines 0 comments Download
M build/android/tombstones.py View 1 2 3 4 2 chunks +0 lines, -30 lines 0 comments Download

Messages

Total messages: 24 (10 generated)
mikecase (-- gone --)
What do you think about something like this. Would have to update this recipe code.... ...
3 years, 10 months ago (2017-01-30 23:20:49 UTC) #2
jbudorick
https://codereview.chromium.org/2664873002/diff/40001/build/android/pylib/android/logdog_logcat_monitor.py File build/android/pylib/android/logdog_logcat_monitor.py (right): https://codereview.chromium.org/2664873002/diff/40001/build/android/pylib/android/logdog_logcat_monitor.py#newcode22 build/android/pylib/android/logdog_logcat_monitor.py:22: self._logdog_stream = logdog_helper.open_text(self._stream_name) While I recognize that you're not ...
3 years, 10 months ago (2017-01-31 16:11:53 UTC) #3
mikecase (-- gone --)
https://codereview.chromium.org/2664873002/diff/40001/build/android/pylib/android/logdog_logcat_monitor.py File build/android/pylib/android/logdog_logcat_monitor.py (right): https://codereview.chromium.org/2664873002/diff/40001/build/android/pylib/android/logdog_logcat_monitor.py#newcode22 build/android/pylib/android/logdog_logcat_monitor.py:22: self._logdog_stream = logdog_helper.open_text(self._stream_name) On 2017/01/31 at 16:11:53, jbudorick wrote: ...
3 years, 10 months ago (2017-01-31 23:08:25 UTC) #4
jbudorick
https://codereview.chromium.org/2664873002/diff/40001/build/android/pylib/results/json_results.py File build/android/pylib/results/json_results.py (right): https://codereview.chromium.org/2664873002/diff/40001/build/android/pylib/results/json_results.py#newcode96 build/android/pylib/results/json_results.py:96: k: v for tr in test_run_result for k, v ...
3 years, 10 months ago (2017-01-31 23:15:12 UTC) #5
mikecase (-- gone --)
https://codereview.chromium.org/2664873002/diff/60001/build/android/pylib/local/device/local_device_instrumentation_test_run.py File build/android/pylib/local/device/local_device_instrumentation_test_run.py (left): https://codereview.chromium.org/2664873002/diff/60001/build/android/pylib/local/device/local_device_instrumentation_test_run.py#oldcode360 build/android/pylib/local/device/local_device_instrumentation_test_run.py:360: tombstones_url = tombstones.LogdogTombstones(resolved_tombstones, On 2017/01/31 at 23:15:12, jbudorick wrote: ...
3 years, 10 months ago (2017-02-01 22:13:45 UTC) #6
mikecase (-- gone --)
renamed function_utils.py to decorators.py
3 years, 10 months ago (2017-02-01 22:42:05 UTC) #7
mikecase (-- gone --)
ping, please take a look. Will let me land some other things I want to ...
3 years, 10 months ago (2017-02-03 01:25:39 UTC) #8
jbudorick
https://codereview.chromium.org/2664873002/diff/120001/build/android/pylib/utils/decorators.py File build/android/pylib/utils/decorators.py (right): https://codereview.chromium.org/2664873002/diff/120001/build/android/pylib/utils/decorators.py#newcode20 build/android/pylib/utils/decorators.py:20: memoize_dict[key] = e This is... interesting. I'm not sure ...
3 years, 10 months ago (2017-02-03 01:30:30 UTC) #10
dnj
https://codereview.chromium.org/2664873002/diff/120001/build/android/pylib/utils/logdog_helper.py File build/android/pylib/utils/logdog_helper.py (right): https://codereview.chromium.org/2664873002/diff/120001/build/android/pylib/utils/logdog_helper.py#newcode78 build/android/pylib/utils/logdog_helper.py:78: def get_logdog_client(): On 2017/02/03 01:30:30, jbudorick wrote: > +dnj ...
3 years, 10 months ago (2017-02-03 01:33:55 UTC) #11
jbudorick
https://codereview.chromium.org/2664873002/diff/120001/build/android/pylib/utils/decorators.py File build/android/pylib/utils/decorators.py (right): https://codereview.chromium.org/2664873002/diff/120001/build/android/pylib/utils/decorators.py#newcode1 build/android/pylib/utils/decorators.py:1: # Copyright 2017 The Chromium Authors. All rights reserved. ...
3 years, 10 months ago (2017-02-03 01:35:42 UTC) #12
mikecase (-- gone --)
- Added decorators_test.py - Now @Memoize does not cache Exception results https://codereview.chromium.org/2664873002/diff/120001/build/android/pylib/utils/decorators.py File build/android/pylib/utils/decorators.py (right): ...
3 years, 10 months ago (2017-02-03 18:28:39 UTC) #13
jbudorick
lgtm
3 years, 10 months ago (2017-02-03 18:33:50 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2664873002/160001
3 years, 10 months ago (2017-02-03 19:51:07 UTC) #21
commit-bot: I haz the power
3 years, 10 months ago (2017-02-03 22:01:26 UTC) #24
Message was sent while issue was closed.
Committed patchset #9 (id:160001) as
https://chromium.googlesource.com/chromium/src/+/c422ef3ada9263e775bd13bef3b0...

Powered by Google App Engine
This is Rietveld 408576698