| 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 13 matching lines...) Expand all Loading... |
| 24 { | 24 { |
| 25 "test": "mojo_edk_util_unittests", | 25 "test": "mojo_edk_util_unittests", |
| 26 }, | 26 }, |
| 27 | 27 |
| 28 # Public tests: | 28 # Public tests: |
| 29 { | 29 { |
| 30 "test": "mojo_public_bindings_unittests", | 30 "test": "mojo_public_bindings_unittests", |
| 31 "cacheable": False, | 31 "cacheable": False, |
| 32 }, | 32 }, |
| 33 { | 33 { |
| 34 "test": "mojo_public_c_bindings_unittests", |
| 35 }, |
| 36 { |
| 34 "test": "mojo_public_environment_unittests", | 37 "test": "mojo_public_environment_unittests", |
| 35 }, | 38 }, |
| 36 { | 39 { |
| 37 "test": "mojo_public_system_unittests", | 40 "test": "mojo_public_system_unittests", |
| 38 }, | 41 }, |
| 39 { | 42 { |
| 40 "test": "mojo_public_utility_unittests", | 43 "test": "mojo_public_utility_unittests", |
| 41 }, | 44 }, |
| 42 { | 45 { |
| 43 "test": "mojo_system_impl_private_unittests", | 46 "test": "mojo_system_impl_private_unittests", |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 "cacheable": False, | 121 "cacheable": False, |
| 119 }, | 122 }, |
| 120 ] | 123 ] |
| 121 | 124 |
| 122 if config.target_os == config.OS_LINUX: | 125 if config.target_os == config.OS_LINUX: |
| 123 tests += [ | 126 tests += [ |
| 124 { | 127 { |
| 125 "test": "sandbox_linux_unittests", | 128 "test": "sandbox_linux_unittests", |
| 126 }, | 129 }, |
| 127 ] | 130 ] |
| OLD | NEW |