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

Unified Diff: build/android/buildbot/bb_device_steps.py

Issue 1124073003: Add gfx_unittests target to the list of Android stable test suites. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: REBASE + VALID_TESTS Created 5 years, 7 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 | « no previous file | build/android/buildbot/bb_run_bot.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 82765f744109c52ad305dab7ef0e55fd4ff29af7..c558080b51fbaab5fb188442e90d907ac6e9767a 100755
--- a/build/android/buildbot/bb_device_steps.py
+++ b/build/android/buildbot/bb_device_steps.py
@@ -95,9 +95,9 @@ INSTALLABLE_PACKAGES = dict((package.name, package) for package in (
'org.chromium.chromedriver_webview_shell')]))
VALID_TESTS = set(['chromedriver', 'chrome_proxy', 'components_browsertests',
- 'gpu', 'python_unittests', 'telemetry_unittests',
- 'telemetry_perf_unittests', 'ui', 'unit', 'webkit',
- 'webkit_layout'])
+ 'gfx_unittests', 'gpu', 'python_unittests',
+ 'telemetry_unittests', 'telemetry_perf_unittests', 'ui',
+ 'unit', 'webkit', 'webkit_layout'])
RunCmd = bb_utils.RunCmd
@@ -571,6 +571,8 @@ def GetTestStepCmds():
('chrome_proxy', RunChromeProxyTests),
('components_browsertests',
lambda options: RunTestSuites(options, ['components_browsertests'])),
+ ('gfx_unittests',
+ lambda options: RunTestSuites(options, ['gfx_unittests'])),
('gpu', RunGPUTests),
('python_unittests', RunPythonUnitTests),
('telemetry_unittests', RunTelemetryUnitTests),
« no previous file with comments | « no previous file | build/android/buildbot/bb_run_bot.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698