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 c0f9fe7842b4926b5c517e2e9ed3bafb08330307..e95a5529f3aa2d0b7f5c72ee10851ec955d90139 100755 |
--- a/build/android/buildbot/bb_device_steps.py |
+++ b/build/android/buildbot/bb_device_steps.py |
@@ -145,6 +145,9 @@ def RunTestSuites(options, suites, suites_options=None): |
args.append('--tool=asan') |
if options.gtest_filter: |
args.append('--gtest-filter=%s' % options.gtest_filter) |
+ if options.flakiness_server: |
+ args.append('--flakiness-dashboard-server=%s' % |
+ options.flakiness_server) |
for suite in suites: |
bb_annotations.PrintNamedStep(suite) |
@@ -186,7 +189,7 @@ def RunChromeSyncShellTests(options): |
test = I('ChromeSyncShell', |
'ChromeSyncShell.apk', |
'org.chromium.chrome.browser.sync', |
- 'ChromeSyncShellTest.apk', |
+ 'ChromeSyncShellTest', |
'chrome:chrome/test/data/android/device_files') |
RunInstrumentationSuite(options, test) |