| 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_embedder_unittests", | 10 "test": "mojo_edk_embedder_unittests", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 }, | 32 }, |
| 33 { | 33 { |
| 34 "test": "mojo_public_utility_unittests", | 34 "test": "mojo_public_utility_unittests", |
| 35 }, | 35 }, |
| 36 { | 36 { |
| 37 "test": "mojo_system_impl_private_unittests", | 37 "test": "mojo_system_impl_private_unittests", |
| 38 }, | 38 }, |
| 39 | 39 |
| 40 # Non-system, non-public tests: | 40 # Non-system, non-public tests: |
| 41 { | 41 { |
| 42 "test": "base_unittests", |
| 43 }, |
| 44 { |
| 42 "test": "crypto_unittests", | 45 "test": "crypto_unittests", |
| 43 }, | 46 }, |
| 44 { | 47 { |
| 45 "test": "mojo_application_manager_unittests", | 48 "test": "mojo_application_manager_unittests", |
| 46 }, | 49 }, |
| 47 { | 50 { |
| 48 "test": "mojo_common_unittests", | 51 "test": "mojo_common_unittests", |
| 49 }, | 52 }, |
| 50 { | 53 { |
| 51 "test": "mojo_converters_unittests", | 54 "test": "mojo_converters_unittests", |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 "cacheable": False, | 112 "cacheable": False, |
| 110 }, | 113 }, |
| 111 ] | 114 ] |
| 112 | 115 |
| 113 if config.target_os == config.OS_LINUX: | 116 if config.target_os == config.OS_LINUX: |
| 114 tests += [ | 117 tests += [ |
| 115 { | 118 { |
| 116 "test": "sandbox_linux_unittests", | 119 "test": "sandbox_linux_unittests", |
| 117 }, | 120 }, |
| 118 ] | 121 ] |
| OLD | NEW |