OLD | NEW |
1 # This file contains a list of Mojo gtest unit tests. | 1 # This file contains a list of Mojo gtest unit tests. |
2 # Prepend * to indicate that results shouldn't be cached (e.g., if the test has | 2 # This must be a valid python dictionary. |
3 # other data dependencies). | 3 # TODO(vtl): Add a way of specifying data dependencies instead of cacheable. |
4 # TODO(vtl): Add a way of specifying data dependencies instead. | 4 [ |
| 5 # System tests: |
| 6 { |
| 7 "test": "mojo_system_unittests", |
| 8 "run_on_android": True, |
| 9 }, |
5 | 10 |
6 # System tests: | 11 # Public tests: |
7 mojo_system_unittests | 12 { |
| 13 "test": "mojo_public_bindings_unittests", |
| 14 "cacheable": False, |
| 15 }, |
| 16 { |
| 17 "test": "mojo_public_environment_unittests", |
| 18 }, |
| 19 { |
| 20 "test": "mojo_public_system_unittests", |
| 21 }, |
| 22 { |
| 23 "test": "mojo_public_utility_unittests", |
| 24 }, |
8 | 25 |
9 # Public tests: | 26 # Non-system, non-public tests: |
10 *mojo_public_bindings_unittests | 27 { |
11 mojo_public_environment_unittests | 28 "test": "clipboard_unittests", |
12 mojo_public_system_unittests | 29 }, |
13 mojo_public_utility_unittests | 30 { |
| 31 "test": "mojo_application_manager_unittests", |
| 32 }, |
| 33 { |
| 34 "test": "mojo_common_unittests", |
| 35 }, |
| 36 { |
| 37 "test": "external_application_unittests", |
| 38 }, |
| 39 { |
| 40 # These tests currently crash. We should re-enable them when they pass. |
| 41 "test": "mojo_view_manager_lib_unittests", |
| 42 "disabled": True, |
| 43 }, |
| 44 { |
| 45 "test": "mojo_surfaces_lib_unittests", |
| 46 }, |
| 47 { |
| 48 "test": "view_manager_service_unittests", |
| 49 }, |
| 50 { |
| 51 "test": "view_manager_unittests", |
| 52 }, |
| 53 { |
| 54 "test": "window_manager_unittests", |
| 55 }, |
14 | 56 |
15 # Non-system, non-public tests: | 57 # JavaScript tests: |
16 clipboard_unittests | 58 { |
17 mojo_application_manager_unittests | 59 "test": "js_unittests", |
18 mojo_common_unittests | 60 "cacheable": False, |
19 external_application_unittests | 61 }, |
20 # These tests currently crash. We should re-enable them when they pass. | 62 { |
21 # mojo_view_manager_lib_unittests | 63 "test": "js_integration_tests", |
22 mojo_surfaces_lib_unittests | 64 "cacheable": False, |
23 view_manager_service_unittests | 65 }, |
24 view_manager_unittests | 66 { |
25 window_manager_unittests | 67 "test": "js_services_unittests", |
| 68 "cacheable": False, |
| 69 }, |
26 | 70 |
27 # JavaScript tests: | 71 # Shell integration tests: |
28 *js_unittests | 72 { |
29 *js_integration_tests | 73 "test": "mojo_shell_tests", |
30 *js_services_unittests | 74 "cacheable": False, |
31 | 75 }, |
32 # Shell integration tests: | 76 ] |
33 *mojo_shell_tests | |
OLD | NEW |