| 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", |
| 11 }, |
| 12 { |
| 10 "test": "mojo_edk_embedder_unittests", | 13 "test": "mojo_edk_embedder_unittests", |
| 11 }, | 14 }, |
| 12 { | 15 { |
| 13 "test": "mojo_edk_system_unittests", | 16 "test": "mojo_edk_system_unittests", |
| 14 }, | 17 }, |
| 15 { | 18 { |
| 16 "test": "mojo_edk_system_test_unittests", | 19 "test": "mojo_edk_system_test_unittests", |
| 17 }, | 20 }, |
| 18 { | 21 { |
| 19 "test": "mojo_edk_util_unittests", | 22 "test": "mojo_edk_util_unittests", |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 "cacheable": False, | 115 "cacheable": False, |
| 113 }, | 116 }, |
| 114 ] | 117 ] |
| 115 | 118 |
| 116 if config.target_os == config.OS_LINUX: | 119 if config.target_os == config.OS_LINUX: |
| 117 tests += [ | 120 tests += [ |
| 118 { | 121 { |
| 119 "test": "sandbox_linux_unittests", | 122 "test": "sandbox_linux_unittests", |
| 120 }, | 123 }, |
| 121 ] | 124 ] |
| OLD | NEW |