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

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

Issue 23601004: [Android Buildbot] Add a GPU builder cum tester. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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 e72ba1ef4a8ab1fca844e6b3fe559a2846b48831..9e86391a95212a42978470abcf163f9814b4e143 100755
--- a/build/android/buildbot/bb_device_steps.py
+++ b/build/android/buildbot/bb_device_steps.py
@@ -66,8 +66,8 @@ INSTRUMENTATION_TESTS = dict((suite.name, suite) for suite in [
'webview:android_webview/test/data/device_files'),
])
-VALID_TESTS = set(['chromedriver', 'ui', 'unit', 'webkit', 'webkit_layout',
- 'webrtc'])
+VALID_TESTS = set(['chromedriver', 'gpu', 'ui', 'unit', 'webkit',
+ 'webkit_layout', 'webrtc'])
RunCmd = bb_utils.RunCmd
@@ -303,9 +303,16 @@ def RunWebRTCTests(options):
RunTestSuites(options, gtest_config.WEBRTC_TEST_SUITES)
+def RunGPUTests(_):
+ bb_annotations.PrintNamedStep('gpu_tests')
+ RunCmd(['content/test/gpu/run_gpu_test',
+ '--browser=android-content-shell', 'pixel'])
+
+
def GetTestStepCmds():
return [
('chromedriver', RunChromeDriverTests),
+ ('gpu', RunGPUTests),
('unit', RunUnitTests),
('ui', RunInstrumentationTests),
('webkit', RunWebkitTests),
« 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