| 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 # EDK tests: |
| 9 { |
| 10 "test": "mojo_edk_embedder_unittests", |
| 11 }, |
| 9 { | 12 { |
| 10 "test": "mojo_edk_system_unittests", | 13 "test": "mojo_edk_system_unittests", |
| 11 }, | 14 }, |
| 15 { |
| 16 "test": "mojo_edk_system_test_unittests", |
| 17 }, |
| 18 { |
| 19 "test": "mojo_edk_util_unittests", |
| 20 }, |
| 12 | 21 |
| 13 # Public tests: | 22 # Public tests: |
| 14 { | 23 { |
| 15 "test": "mojo_public_bindings_unittests", | 24 "test": "mojo_public_bindings_unittests", |
| 16 "cacheable": False, | 25 "cacheable": False, |
| 17 }, | 26 }, |
| 18 { | 27 { |
| 19 "test": "mojo_public_environment_unittests", | 28 "test": "mojo_public_environment_unittests", |
| 20 }, | 29 }, |
| 21 { | 30 { |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 "cacheable": False, | 106 "cacheable": False, |
| 98 }, | 107 }, |
| 99 ] | 108 ] |
| 100 | 109 |
| 101 if config.target_os == config.OS_LINUX: | 110 if config.target_os == config.OS_LINUX: |
| 102 tests += [ | 111 tests += [ |
| 103 { | 112 { |
| 104 "test": "sandbox_linux_unittests", | 113 "test": "sandbox_linux_unittests", |
| 105 }, | 114 }, |
| 106 ] | 115 ] |
| OLD | NEW |