Chromium Code Reviews| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 88 | 88 |
| 89 # TODO: get dart unittests working with android. | 89 # TODO: get dart unittests working with android. |
| 90 if config.target_os != config.OS_ANDROID: | 90 if config.target_os != config.OS_ANDROID: |
| 91 tests += [ | 91 tests += [ |
| 92 { | 92 { |
| 93 "test": "dart_unittests", | 93 "test": "dart_unittests", |
| 94 "cacheable": False, | 94 "cacheable": False, |
| 95 }, | 95 }, |
| 96 ] | 96 ] |
| 97 | 97 |
| 98 if config.target_os == config.OS_LINUX: | 98 if config.target_os == config.OS_LINUX or config.target_os == config.OS_ANDROID: |
|
jamesr
2015/08/27 19:19:34
i believe OS_LINUX and OS_ANDROID are the only pos
jln (very slow on Chromium)
2015/08/27 20:03:57
Done.
| |
| 99 tests += [ | 99 tests += [ |
| 100 { | 100 { |
| 101 "test": "sandbox_linux_unittests", | 101 "test": "sandbox_linux_unittests", |
| 102 }, | 102 }, |
| 103 ] | 103 ] |
| OLD | NEW |