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

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

Issue 17466002: Add WebRTC test configurations for Android testing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 5 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') | build/android/pylib/gtest/gtest_config.py » ('J')
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 45187d539ebdb348edcc049e4bf0a3a484f3eb09..72a9863f32a1d78adea3a55221ecd8777e6a4cc4 100755
--- a/build/android/buildbot/bb_device_steps.py
+++ b/build/android/buildbot/bb_device_steps.py
@@ -64,7 +64,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'])
+VALID_TESTS = set(['chromedriver', 'ui', 'unit', 'webkit', 'webkit_layout',
+ 'webrtc'])
RunCmd = bb_utils.RunCmd
@@ -286,13 +287,17 @@ def RunWebkitTests(options):
RunWebkitLint(options.target)
+def RunWebRTCTests(options):
+ RunTestSuites(options, gtest_config.WEBRTC_TEST_SUITES)
+
def GetTestStepCmds():
Isaac (away) 2013/07/31 21:49:09 2 newlines between top-level functions
kjellander_chromium 2013/08/05 11:24:03 Done.
return [
('chromedriver', RunChromeDriverTests),
('unit', RunUnitTests),
('ui', RunInstrumentationTests),
('webkit', RunWebkitTests),
- ('webkit_layout', RunWebkitLayoutTests)
+ ('webkit_layout', RunWebkitLayoutTests),
+ ('webrtc', RunWebRTCTests),
]
« no previous file with comments | « no previous file | build/android/buildbot/bb_run_bot.py » ('j') | build/android/pylib/gtest/gtest_config.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698