| 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", |
| 11 }, | 11 }, |
| 12 { | 12 { |
| 13 "test": "mojo_edk_embedder_unittests", | 13 "test": "mojo_edk_embedder_unittests", |
| 14 }, | 14 }, |
| 15 { | 15 { |
| 16 "test": "mojo_edk_platform_unittests", | 16 "test": "mojo_edk_platform_unittests", |
| 17 }, | 17 }, |
| 18 { | 18 { |
| 19 "test": "mojo_edk_system_unittests", | 19 "test": "mojo_edk_system_unittests", |
| 20 }, | 20 }, |
| 21 { | 21 { |
| 22 "test": "mojo_edk_system_test_unittests", | 22 "test": "mojo_edk_system_test_unittests", |
| 23 }, | 23 }, |
| 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", | |
| 31 "cacheable": False, | |
| 32 }, | |
| 33 { | |
| 34 "test": "mojo_public_c_bindings_unittests", | 30 "test": "mojo_public_c_bindings_unittests", |
| 35 }, | 31 }, |
| 36 { | 32 { |
| 37 "test": "mojo_public_environment_unittests", | 33 "test": "mojo_public_c_system_unittests", |
| 38 }, | 34 }, |
| 39 { | 35 { |
| 40 "test": "mojo_public_system_unittests", | 36 "test": "mojo_public_cpp_application_unittests", |
| 41 }, | 37 }, |
| 42 { | 38 { |
| 43 "test": "mojo_public_utility_unittests", | 39 "test": "mojo_public_cpp_bindings_unittests", |
| 40 "cacheable": False, |
| 41 }, |
| 42 { |
| 43 "test": "mojo_public_cpp_environment_unittests", |
| 44 }, |
| 45 { |
| 46 "test": "mojo_public_cpp_system_unittests", |
| 47 }, |
| 48 { |
| 49 "test": "mojo_public_cpp_utility_unittests", |
| 44 }, | 50 }, |
| 45 | 51 |
| 46 # Non-system, non-public tests: | 52 # Non-system, non-public tests: |
| 47 { | 53 { |
| 48 "test": "base_unittests", | 54 "test": "base_unittests", |
| 49 }, | 55 }, |
| 50 { | 56 { |
| 51 "test": "crypto_unittests", | 57 "test": "crypto_unittests", |
| 52 }, | 58 }, |
| 53 { | 59 { |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 "cacheable": False, | 121 "cacheable": False, |
| 116 }, | 122 }, |
| 117 ] | 123 ] |
| 118 | 124 |
| 119 if config.target_os == config.OS_LINUX: | 125 if config.target_os == config.OS_LINUX: |
| 120 tests += [ | 126 tests += [ |
| 121 { | 127 { |
| 122 "test": "sandbox_linux_unittests", | 128 "test": "sandbox_linux_unittests", |
| 123 }, | 129 }, |
| 124 ] | 130 ] |
| OLD | NEW |