| 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 # System tests: |
| 9 { | 9 { |
| 10 "test": "mojo_system_unittests", | 10 "test": "mojo_system_unittests", |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 { | 73 { |
| 74 "test": "js_integration_tests", | 74 "test": "js_integration_tests", |
| 75 "cacheable": False, | 75 "cacheable": False, |
| 76 }, | 76 }, |
| 77 { | 77 { |
| 78 "test": "js_services_unittests", | 78 "test": "js_services_unittests", |
| 79 "cacheable": False, | 79 "cacheable": False, |
| 80 }, | 80 }, |
| 81 ] | 81 ] |
| 82 | 82 |
| 83 # TODO: get dart unittests working with asan and android. | 83 # TODO: get dart unittests working with android. |
| 84 if not config.sanitizer and config.target_os != config.OS_ANDROID: | 84 if config.target_os != config.OS_ANDROID: |
| 85 tests += [ | 85 tests += [ |
| 86 { | 86 { |
| 87 "test": "dart_unittests", | 87 "test": "dart_unittests", |
| 88 "cacheable": False, | 88 "cacheable": False, |
| 89 }, | 89 }, |
| 90 ] | 90 ] |
| OLD | NEW |