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

Unified Diff: build/android/buildbot/bb_device_steps.py

Issue 19931004: [Android Buildbot] Make flakiness dashboard server configurable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix indentation Created 7 years, 5 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 | « no previous file | build/android/buildbot/bb_run_bot.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..0ee870ea40251d99c4d1f422c95b46f65e33830e 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,8 +359,10 @@ 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',
- help='Upload the results to the flakiness dashboard.')
+ parser.add_option(
+ '--flakiness-server',
+ help='The flakiness dashboard server to which the results should be '
+ 'uploaded.')
parser.add_option(
'--auto-reconnect', action='store_true',
help='Push script to device which restarts adbd on disconnections.')
« no previous file with comments | « no previous file | build/android/buildbot/bb_run_bot.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698