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

Unified Diff: build/android/pylib/gtest/gtest_config.py

Issue 12758002: Add android buildbot support for exe tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Don't wrap with bash for presubmit testing. CQ has no android_tools directory. Created 7 years, 9 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 | « build/android/pylib/gtest/dispatch.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/gtest/gtest_config.py
diff --git a/build/android/pylib/gtest/gtest_config.py b/build/android/pylib/gtest/gtest_config.py
index 8512dc4e02878c10736ba2766b5fb0fe7990dfee..f5fdaac3d5a96af035d0a3efb1b4ba021c991c41 100644
--- a/build/android/pylib/gtest/gtest_config.py
+++ b/build/android/pylib/gtest/gtest_config.py
@@ -4,31 +4,38 @@
"""Configuration file for android gtest suites."""
+import collections
+
+
+Suite = collections.namedtuple('Suite', ['is_suite_exe', 'name'])
+Exe = lambda name : Suite(True, name)
+Apk = lambda name : Suite(False, name)
+
+
# Add new suites here before upgrading them to the stable list below.
EXPERIMENTAL_TEST_SUITES = [
- # The JNI version of the sandbox_linux_unittests. Should be changed to
- # 'sandbox_linux_unittests' once it can be run with --exe.
- 'sandbox_linux_jni_unittests',
+ Exe('sandbox_linux_unittests'),
+ Exe('breakpad_unittests'),
]
# Do not modify this list without approval of an android owner.
# This list determines which suites are run by default, both for local
# testing and on android trybots running on commit-queue.
STABLE_TEST_SUITES = [
- 'TestWebKitAPI',
- 'android_webview_unittests',
- 'base_unittests',
- 'cc_unittests',
- 'components_unittests',
- 'content_unittests',
- 'gpu_unittests',
- 'ipc_tests',
- 'media_unittests',
- 'net_unittests',
- 'sql_unittests',
- 'sync_unit_tests',
- 'ui_unittests',
- 'unit_tests',
- 'webkit_compositor_bindings_unittests',
- 'webkit_unit_tests',
+ Apk('TestWebKitAPI'),
+ Apk('android_webview_unittests'),
+ Apk('base_unittests'),
+ Apk('cc_unittests'),
+ Apk('components_unittests'),
+ Apk('content_unittests'),
+ Apk('gpu_unittests'),
+ Apk('ipc_tests'),
+ Apk('media_unittests'),
+ Apk('net_unittests'),
+ Apk('sql_unittests'),
+ Apk('sync_unit_tests'),
+ Apk('ui_unittests'),
+ Apk('unit_tests'),
+ Apk('webkit_compositor_bindings_unittests'),
+ Apk('webkit_unit_tests'),
]
« no previous file with comments | « build/android/pylib/gtest/dispatch.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698