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 # EDK tests: | 8 # EDK tests: |
9 { | 9 { |
10 "test": "mojo_edk_base_edk_unittests", | 10 "test": "mojo_edk_base_edk_unittests", |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 { | 50 { |
51 "test": "base_unittests", | 51 "test": "base_unittests", |
52 }, | 52 }, |
53 { | 53 { |
54 "test": "crypto_unittests", | 54 "test": "crypto_unittests", |
55 }, | 55 }, |
56 { | 56 { |
57 "test": "mojo_application_manager_unittests", | 57 "test": "mojo_application_manager_unittests", |
58 }, | 58 }, |
59 { | 59 { |
60 "test": "mojo_common_unittests", | |
61 }, | |
62 { | |
63 "test": "mojo_converters_unittests", | 60 "test": "mojo_converters_unittests", |
64 }, | 61 }, |
65 { | 62 { |
66 "test": "url_response_disk_cache_unittests", | 63 "test": "url_response_disk_cache_unittests", |
67 }, | 64 }, |
68 | 65 |
69 # Shell integration tests: | 66 # Shell integration tests: |
70 { | 67 { |
71 "test": "mojo_shell_tests", | 68 "test": "mojo_shell_tests", |
72 "cacheable": False, | 69 "cacheable": False, |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 "cacheable": False, | 118 "cacheable": False, |
122 }, | 119 }, |
123 ] | 120 ] |
124 | 121 |
125 if config.target_os == config.OS_LINUX: | 122 if config.target_os == config.OS_LINUX: |
126 tests += [ | 123 tests += [ |
127 { | 124 { |
128 "test": "sandbox_linux_unittests", | 125 "test": "sandbox_linux_unittests", |
129 }, | 126 }, |
130 ] | 127 ] |
OLD | NEW |