Index: build/android/buildbot/bb_device_steps.py |
diff --git a/build/android/buildbot/bb_device_steps.py b/build/android/buildbot/bb_device_steps.py |
index 45187d539ebdb348edcc049e4bf0a3a484f3eb09..249e30ac8b50efc8d583db9e3e58225f713e02ef 100755 |
--- a/build/android/buildbot/bb_device_steps.py |
+++ b/build/android/buildbot/bb_device_steps.py |
@@ -172,9 +172,9 @@ def RunInstrumentationSuite(options, test, flunk_on_failure=True): |
args.append('--release') |
if options.asan: |
args.append('--tool=asan') |
- if options.upload_to_flakiness_server: |
+ if options.flakiness_server: |
args.append('--flakiness-dashboard-server=%s' % |
- constants.UPSTREAM_FLAKINESS_SERVER) |
+ options.flakiness_server) |
if test.host_driven_root: |
args.append('--python_test_root=%s' % test.host_driven_root) |
if test.annotation: |
@@ -359,7 +359,7 @@ def GetDeviceStepsOptParser(): |
help='Install an apk by name') |
parser.add_option('--reboot', action='store_true', |
help='Reboot devices before running tests') |
- parser.add_option('--upload-to-flakiness-server', action='store_true', |
+ parser.add_option('--flakiness-server', |
help='Upload the results to the flakiness dashboard.') |
frankf
2013/07/22 21:00:58
Update the help to something like "Address of the
Siva Chandra
2013/07/22 21:05:06
I uploaded patch set 2 with this fixed while you w
|
parser.add_option( |
'--auto-reconnect', action='store_true', |