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

Unified Diff: testing/scripts/telemetry_perf_unittests.py

Issue 1331213004: [Android] Don't use a device blacklist if one isn't provided. (RELAND 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: + adb_install_apk.py blacklist Created 5 years, 3 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 | « testing/scripts/host_info.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/scripts/telemetry_perf_unittests.py
diff --git a/testing/scripts/telemetry_perf_unittests.py b/testing/scripts/telemetry_perf_unittests.py
index 238434cac7d4a9cbd6aadd3a533b40f36bc04151..063e818b763e6a93e4e0afbe49ec1635651ba52e 100755
--- a/testing/scripts/telemetry_perf_unittests.py
+++ b/testing/scripts/telemetry_perf_unittests.py
@@ -18,7 +18,12 @@ def main_run(args):
test_args = ['--retry-limit', '3']
if 'android' == args.properties.get('target_platform'):
- test_args += ['--browser', 'android-chromium', '--device', 'android']
+ test_args += [
+ '--browser', 'android-chromium',
+ '--device', 'android',
+ '--android-blacklist-file',
+ os.path.join(args.paths['checkout'], 'out', 'bad_devices.json'),
+ ]
else:
test_args += ['--browser', args.build_config_fs.lower()]
« no previous file with comments | « testing/scripts/host_info.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698