OLD | NEW |
---|---|
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 """Configuration file for android gtest suites.""" | 5 """Configuration file for android gtest suites.""" |
6 | 6 |
7 # Add new suites here before upgrading them to the stable list below. | 7 # Add new suites here before upgrading them to the stable list below. |
8 EXPERIMENTAL_TEST_SUITES = [ | 8 # The outer key is a test configuration option: whether the test is |
9 # The JNI version of the sandbox_linux_unittests. Should be changed to | 9 # wrapped with an apk or whether it is exe-based. |
10 # 'sandbox_linux_unittests' once it can be run with --exe. | 10 EXPERIMENTAL_TEST_SUITES = { |
11 'sandbox_linux_jni_unittests', | 11 False: [], |
frankf
2013/03/12 03:13:15
Let's just use 'apk'/'exe' as keys since it's self
Isaac (away)
2013/03/12 03:19:44
sgtm. I'm going to switch this to namedtuples.
| |
12 ] | 12 True: [ |
13 'sandbox_linux_unittests', | |
14 'breakpad_unittests', | |
15 ], | |
16 } | |
13 | 17 |
14 # Do not modify this list without approval of an android owner. | 18 # Do not modify this list without approval of an android owner. |
15 # This list determines which suites are run by default, both for local | 19 # This list determines which suites are run by default, both for local |
16 # testing and on android trybots running on commit-queue. | 20 # testing and on android trybots running on commit-queue. |
17 STABLE_TEST_SUITES = [ | 21 STABLE_TEST_SUITES = { |
18 'TestWebKitAPI', | 22 False: [ |
19 'android_webview_unittests', | 23 'TestWebKitAPI', |
20 'base_unittests', | 24 'android_webview_unittests', |
21 'cc_unittests', | 25 'base_unittests', |
22 'components_unittests', | 26 'cc_unittests', |
23 'content_unittests', | 27 'components_unittests', |
24 'gpu_unittests', | 28 'content_unittests', |
25 'ipc_tests', | 29 'gpu_unittests', |
26 'media_unittests', | 30 'ipc_tests', |
27 'net_unittests', | 31 'media_unittests', |
28 'sql_unittests', | 32 'net_unittests', |
29 'sync_unit_tests', | 33 'sql_unittests', |
30 'ui_unittests', | 34 'sync_unit_tests', |
31 'unit_tests', | 35 'ui_unittests', |
32 'webkit_compositor_bindings_unittests', | 36 'unit_tests', |
33 'webkit_unit_tests', | 37 'webkit_compositor_bindings_unittests', |
34 ] | 38 'webkit_unit_tests', |
39 ], | |
40 True: [] | |
41 } | |
OLD | NEW |