| 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 a valid python dictionary. | 2 # This must be a valid python dictionary. |
| 3 # TODO(vtl): Add a way of specifying data dependencies instead of cacheable. | 3 # TODO(vtl): Add a way of specifying data dependencies instead of cacheable. |
| 4 [ | 4 [ |
| 5 # System tests: | 5 # System tests: |
| 6 { | 6 { |
| 7 "test": "mojo_system_unittests", | 7 "test": "mojo_system_unittests", |
| 8 "run_on_android": True, | 8 "run_on_android": True, |
| 9 }, | 9 }, |
| 10 | 10 |
| 11 # Public tests: | 11 # Public tests: |
| 12 { | 12 { |
| 13 "test": "mojo_public_bindings_unittests", | 13 "test": "mojo_public_bindings_unittests", |
| 14 "cacheable": False, | 14 "cacheable": False, |
| 15 }, | 15 }, |
| 16 { | 16 { |
| 17 "test": "mojo_public_environment_unittests", | 17 "test": "mojo_public_environment_unittests", |
| 18 }, | 18 }, |
| 19 { | 19 { |
| 20 "test": "mojo_public_system_unittests", | 20 "test": "mojo_public_system_unittests", |
| 21 }, | 21 }, |
| 22 { | 22 { |
| 23 "test": "mojo_public_utility_unittests", | 23 "test": "mojo_public_utility_unittests", |
| 24 }, | 24 }, |
| 25 | 25 |
| 26 # Non-system, non-public tests: | 26 # Non-system, non-public tests: |
| 27 { | 27 { |
| 28 "test": "clipboard_unittests", | |
| 29 }, | |
| 30 { | |
| 31 "test": "mojo_application_manager_unittests", | 28 "test": "mojo_application_manager_unittests", |
| 32 }, | 29 }, |
| 33 { | 30 { |
| 34 "test": "mojo_common_unittests", | 31 "test": "mojo_common_unittests", |
| 35 }, | 32 }, |
| 36 { | 33 { |
| 37 "test": "external_application_unittests", | 34 "test": "external_application_unittests", |
| 38 }, | 35 }, |
| 39 { | 36 { |
| 40 # These tests currently crash. We should re-enable them when they pass. | 37 # These tests currently crash. We should re-enable them when they pass. |
| (...skipping 23 matching lines...) Expand all Loading... |
| 64 "test": "js_services_unittests", | 61 "test": "js_services_unittests", |
| 65 "cacheable": False, | 62 "cacheable": False, |
| 66 }, | 63 }, |
| 67 | 64 |
| 68 # Shell integration tests: | 65 # Shell integration tests: |
| 69 { | 66 { |
| 70 "test": "mojo_shell_tests", | 67 "test": "mojo_shell_tests", |
| 71 "cacheable": False, | 68 "cacheable": False, |
| 72 }, | 69 }, |
| 73 ] | 70 ] |
| OLD | NEW |