diff options
author | frankf@chromium.org <frankf@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-10 22:38:59 +0000 |
---|---|---|
committer | frankf@chromium.org <frankf@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-10 22:38:59 +0000 |
commit | d1a0657cc2e4585129472dff282bf04e75881ac6 (patch) | |
tree | 7dc01cc03b4d14f32ec99ac0e4576dfe8d2da00a /build/android/buildbot | |
parent | cc74be8f7f40d70b6bcfadae581d15227e141aee (diff) | |
download | chromium_src-d1a0657cc2e4585129472dff282bf04e75881ac6.zip chromium_src-d1a0657cc2e4585129472dff282bf04e75881ac6.tar.gz chromium_src-d1a0657cc2e4585129472dff282bf04e75881ac6.tar.bz2 |
[Android] Reduce test logging verbosity to INFO on buildbots.
Also, the output of host commands are now at DEBUG level.
BUG=160320
Review URL: https://codereview.chromium.org/13799010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@193479 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/android/buildbot')
-rwxr-xr-x | build/android/buildbot/bb_device_steps.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/android/buildbot/bb_device_steps.py b/build/android/buildbot/bb_device_steps.py index 04d49c2..c77782c 100755 --- a/build/android/buildbot/bb_device_steps.py +++ b/build/android/buildbot/bb_device_steps.py @@ -188,8 +188,8 @@ def RunInstrumentationSuite(options, test): buildbot_report.PrintNamedStep('%s_instrumentation_tests' % test.name.lower()) InstallApk(options, test) - args = ['--test-apk', test.test_apk, '--test_data', test.test_data, '-vvv', - '-I'] + args = ['--test-apk', test.test_apk, '--test_data', test.test_data, + '--verbose', '-I'] if options.target == 'Release': args.append('--release') if options.asan: |