| 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()]
|
|
|
|
|