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

Unified Diff: tools-webrtc/mb/mb.py

Issue 2753773005: Roll chromium_revision 0036d9b08e..2d05f4450c (457220:457366) (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « DEPS ('k') | tools-webrtc/mb/mb_unittest.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools-webrtc/mb/mb.py
diff --git a/tools-webrtc/mb/mb.py b/tools-webrtc/mb/mb.py
index 9eb818ae23e73855d6221c38d7f60d72e26255b4..1801a13ac49804a605e7605f76cfbb69b5c619d4 100755
--- a/tools-webrtc/mb/mb.py
+++ b/tools-webrtc/mb/mb.py
@@ -1055,9 +1055,23 @@ class MetaBuildWrapper(object):
extra_files = []
if android:
- cmdline = ['./../../build/android/test_wrapper/logdog_wrapper.py',
- '--target', target,
- '--logdog-bin-cmd', '../../bin/logdog_butler']
+ logdog_command = [
+ '--logdog-bin-cmd', './../../bin/logdog_butler',
+ '--project', 'chromium',
+ '--service-account-json',
+ '/creds/service_accounts/service-account-luci-logdog-publisher.json',
+ '--prefix', 'android/swarming/logcats/${SWARMING_TASK_ID}',
+ '--source', '${ISOLATED_OUTDIR}/logcats',
+ '--name', 'unified_logcats',
+ ]
+ test_cmdline = [
+ self.PathJoin('bin', 'run_%s' % target),
+ '--logcat-output-file', '${ISOLATED_OUTDIR}/logcats',
+ ]
+ if test_type != 'junit_test':
+ test_cmdline += ['--target-devices-file', '${SWARMING_BOT_FILE}',]
+ cmdline = (['./../../build/android/test_wrapper/logdog_wrapper.py']
+ + logdog_command + test_cmdline + ['-v'])
else:
extra_files = ['../../testing/test_env.py']
« no previous file with comments | « DEPS ('k') | tools-webrtc/mb/mb_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698