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 c558080b51fbaab5fb188442e90d907ac6e9767a..207b85d58b1d5d81f4e334c52e16c52053a7d8c3 100755 |
--- a/build/android/buildbot/bb_device_steps.py |
+++ b/build/android/buildbot/bb_device_steps.py |
@@ -94,10 +94,21 @@ INSTALLABLE_PACKAGES = dict((package.name, package) for package in ( |
'ChromeDriverWebViewShell.apk', |
'org.chromium.chromedriver_webview_shell')])) |
-VALID_TESTS = set(['chromedriver', 'chrome_proxy', 'components_browsertests', |
- 'gfx_unittests', 'gpu', 'python_unittests', |
- 'telemetry_unittests', 'telemetry_perf_unittests', 'ui', |
- 'unit', 'webkit', 'webkit_layout']) |
+VALID_TESTS = set([ |
+ 'base_junit_tests', |
+ 'chromedriver', |
+ 'chrome_proxy', |
+ 'components_browsertests', |
+ 'gfx_unittests', |
+ 'gpu', |
+ 'python_unittests', |
+ 'telemetry_unittests', |
+ 'telemetry_perf_unittests', |
+ 'ui', |
+ 'unit', |
+ 'webkit', |
+ 'webkit_layout' |
+]) |
RunCmd = bb_utils.RunCmd |