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 # This must be valid python. It can use the |config| global that will be a | 2 # This must be valid python. It can use the |config| global that will be a |
3 # mopy.config.Config object and must set a |tests| global that will contain the | 3 # mopy.config.Config object and must set a |tests| global that will contain the |
4 # tests to run. | 4 # tests to run. |
5 # TODO(vtl): Add a way of specifying data dependencies instead of cacheable. | 5 # TODO(vtl): Add a way of specifying data dependencies instead of cacheable. |
6 | 6 |
7 tests = [ | 7 tests = [ |
8 # System tests: | 8 # System tests: |
9 { | 9 { |
10 "test": "mojo_system_unittests", | 10 "test": "mojo_system_unittests", |
(...skipping 27 matching lines...) Expand all Loading... |
38 { | 38 { |
39 "test": "mojo_common_unittests", | 39 "test": "mojo_common_unittests", |
40 }, | 40 }, |
41 { | 41 { |
42 "test": "mojo_view_manager_lib_unittests", | 42 "test": "mojo_view_manager_lib_unittests", |
43 }, | 43 }, |
44 { | 44 { |
45 "test": "mojo_surfaces_lib_unittests", | 45 "test": "mojo_surfaces_lib_unittests", |
46 }, | 46 }, |
47 { | 47 { |
| 48 "test": "url_response_disk_cache_unittests", |
| 49 }, |
| 50 { |
48 "test": "view_manager_service_unittests", | 51 "test": "view_manager_service_unittests", |
49 }, | 52 }, |
50 { | 53 { |
51 "test": "window_manager_unittests", | 54 "test": "window_manager_unittests", |
52 }, | 55 }, |
53 | 56 |
54 # Shell integration tests: | 57 # Shell integration tests: |
55 { | 58 { |
56 "test": "mojo_shell_tests", | 59 "test": "mojo_shell_tests", |
57 "cacheable": False, | 60 "cacheable": False, |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 "cacheable": False, | 97 "cacheable": False, |
95 }, | 98 }, |
96 ] | 99 ] |
97 | 100 |
98 if config.target_os == config.OS_LINUX: | 101 if config.target_os == config.OS_LINUX: |
99 tests += [ | 102 tests += [ |
100 { | 103 { |
101 "test": "sandbox_linux_unittests", | 104 "test": "sandbox_linux_unittests", |
102 }, | 105 }, |
103 ] | 106 ] |
OLD | NEW |