Chromium Code Reviews| Index: tools/mb/mb.py |
| diff --git a/tools/mb/mb.py b/tools/mb/mb.py |
| index edbb434d27bfb36a9f3f4d1e8c0ab59231e909a3..c38741a664e9cf20cd5f6da681bbfc2d194253e3 100755 |
| --- a/tools/mb/mb.py |
| +++ b/tools/mb/mb.py |
| @@ -15,6 +15,7 @@ import argparse |
| import ast |
| import errno |
| import json |
| +import logging |
| import os |
| import pipes |
| import pprint |
| @@ -1086,23 +1087,46 @@ class MetaBuildWrapper(object): |
| output_path=None) |
| if android and test_type != "script": |
| - 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', |
| '--target-devices-file', '${SWARMING_BOT_FILE}', |
| '-v' |
| ] |
| - cmdline = (['./../../build/android/test_wrapper/logdog_wrapper.py'] |
| - + logdog_command + test_cmdline) |
| + if not os.path.exists('./../../bin/logdog_butler'): |
|
jbudorick
2017/02/17 01:46:21
This check doesn't work as intended, as mb.py runs
dnj
2017/02/17 16:54:52
Make this a constant (e.g., "butler_path") so you
BigBossZhiling
2017/02/17 21:10:41
Acknowledged.
|
| + logging.error( |
| + 'Logdog binary %s unavailable. Unable to upload logcats.', |
|
dnj
2017/02/17 16:54:52
Should this maybe be fatal? If something is puttin
BigBossZhiling
2017/02/17 21:10:41
Acknowledged.
|
| + './../../bin/logdog_butler') |
| + cmdline = test_cmdline |
| + else: |
| + project = 'chromium' |
| + output = 'logdog,host=services-dot-luci-logdog.appspot.com' |
| + prefix = 'android/swarming/logcats/${SWARMING_TASK_ID}' |
|
dnj
2017/02/17 16:54:52
Does the shell actually resolve this? Crazy. I sti
BigBossZhiling
2017/02/17 21:10:41
Done.
|
| + service_account_json = '/creds/service_accounts/'\ |
|
dnj
2017/02/17 16:54:51
nit: recommend using parenthesis for breaking:
se
BigBossZhiling
2017/02/17 21:10:41
Done.
|
| + 'service-account-luci-logdog-publisher.json' |
| + |
| + # Call test_cmdline through logdog butler subcommand. |
| + test_cmdline = [ |
| + './../../bin/logdog_butler', '-project', project, |
| + '-output', output, |
| + '-prefix', prefix, |
| + '-service-account-json', service_account_json, |
|
dnj
2017/02/17 16:54:51
Not sure what this is supposed to accomplish. You
BigBossZhiling
2017/02/17 21:10:41
Acknowledged.
|
| + 'run', '--'] + test_cmdline |
| + |
| + if not os.path.exists('${ISOLATED_OUTDIR}/logcats'): |
|
mikecase (-- gone --)
2017/02/17 01:40:57
I think we want to upload the logcats via the test
jbudorick
2017/02/17 01:46:21
Everything below this shouldn't be here.
BigBossZhiling
2017/02/17 21:10:41
Done.
|
| + logging.error( |
| + 'Logcat sources not found at %s. Unable to upload logcats.', |
| + '${ISOLATED_OUTDIR}/logcats') |
| + cmdline = test_cmdline |
| + else: |
| + stream_source_cmdline = [ |
| + './../../bin/logdog_butler', '-project', project, |
|
mikecase (-- gone --)
2017/02/17 01:40:57
nit: Can remove the "./" at the beginning of the p
BigBossZhiling
2017/02/17 21:10:41
Done.
|
| + '-output', output, |
| + '-prefix', prefix, |
| + '-service-account-json', service_account_json, |
| + 'stream', '-source', '${ISOLATED_OUTDIR}/logcats', |
| + '-stream', '-name=unified_logcats'] |
| + cmdline = test_cmdline + ['&&'] + stream_source_cmdline |
| elif use_xvfb and test_type == 'windowed_test_launcher': |
| extra_files = [ |
| '../../testing/test_env.py', |