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 fbbf23bee92daa4b8944e8d4df2db4569a2d1ea3..ed7453b971b16f924b84c7035baa69a4af0b25e5 100755 |
--- a/build/android/buildbot/bb_device_steps.py |
+++ b/build/android/buildbot/bb_device_steps.py |
@@ -213,7 +213,7 @@ def RunChromeProxyTests(options): |
""" |
InstallApk(options, INSTRUMENTATION_TESTS['ChromeShell'], False) |
args = ['--browser', 'android-chrome-shell'] |
- devices = device_utils.DeviceUtils.HealthyDevices() |
+ devices = device_utils.DeviceUtils.HealthyDevices(blacklist=None) |
if devices: |
args = args + ['--device', devices[0].adb.GetDeviceSerial()] |
bb_annotations.PrintNamedStep('chrome_proxy') |
@@ -232,7 +232,7 @@ def RunTelemetryTests(options, step_name, run_tests_path): |
""" |
InstallApk(options, INSTRUMENTATION_TESTS['ChromeShell'], False) |
args = ['--browser', 'android-chrome-shell'] |
- devices = device_utils.DeviceUtils.HealthyDevices() |
+ devices = device_utils.DeviceUtils.HealthyDevices(blacklist=None) |
if devices: |
args = args + ['--device', 'android'] |
bb_annotations.PrintNamedStep(step_name) |