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

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

Issue 11972003: [Android] Upload instrumentation results to flakiness dashboard. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed ilevy's comments Created 7 years, 11 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 51e6d5e92a5b8ca37012f800dcd9b73a041f1971..b5d8310e872c6407e6d5d77c6eb4c62ebcd08cd4 100755
--- a/build/android/buildbot/bb_device_steps.py
+++ b/build/android/buildbot/bb_device_steps.py
@@ -168,6 +168,9 @@ def RunInstrumentationSuite(options, test):
args.append('--release')
if options.asan:
args.append('--tool=asan')
+ if options.upload_to_flakiness_server:
+ args.append('--flakiness-dashboard-server='
+ 'chrome-android-staging-results.appspot.com')
RunCmd(['build/android/run_instrumentation_tests.py'] + args)
@@ -279,6 +282,8 @@ def main(argv):
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.')
options, args = parser.parse_args(argv[1:])
def ParserError(msg):
« 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