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 import collections | 7 import collections |
8 | 8 |
9 | 9 |
10 Suite = collections.namedtuple('Suite', ['is_suite_exe', 'name']) | 10 Suite = collections.namedtuple('Suite', ['is_suite_exe', 'name']) |
(...skipping 10 matching lines...) Expand all Loading... | |
21 # testing and on android trybots running on commit-queue. | 21 # testing and on android trybots running on commit-queue. |
22 STABLE_TEST_SUITES = [ | 22 STABLE_TEST_SUITES = [ |
23 Apk('android_webview_unittests'), | 23 Apk('android_webview_unittests'), |
24 Apk('base_unittests'), | 24 Apk('base_unittests'), |
25 Apk('cc_unittests'), | 25 Apk('cc_unittests'), |
26 Apk('components_unittests'), | 26 Apk('components_unittests'), |
27 Apk('content_unittests'), | 27 Apk('content_unittests'), |
28 Apk('gpu_unittests'), | 28 Apk('gpu_unittests'), |
29 Apk('ipc_tests'), | 29 Apk('ipc_tests'), |
30 Apk('media_unittests'), | 30 Apk('media_unittests'), |
31 Apk('modules_unittests'), | |
frankf
2013/07/02 17:20:24
As the comment above states, by adding this here,
| |
31 Apk('net_unittests'), | 32 Apk('net_unittests'), |
32 Apk('sql_unittests'), | 33 Apk('sql_unittests'), |
33 Apk('sync_unit_tests'), | 34 Apk('sync_unit_tests'), |
34 Apk('ui_unittests'), | 35 Apk('ui_unittests'), |
35 Apk('unit_tests'), | 36 Apk('unit_tests'), |
36 Apk('webkit_compositor_bindings_unittests'), | 37 Apk('webkit_compositor_bindings_unittests'), |
37 Apk('webkit_unit_tests'), | 38 Apk('webkit_unit_tests'), |
38 Exe('breakpad_unittests'), | 39 Exe('breakpad_unittests'), |
39 Exe('sandbox_linux_unittests'), | 40 Exe('sandbox_linux_unittests'), |
40 ] | 41 ] |
OLD | NEW |