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 # Prepend * to indicate that results shouldn't be cached (e.g., if the test has | 2 # TODO(vtl): Add a way of specifying data dependencies instead of cacheable. |
| 3 # other data dependencies). | 3 [ |
| 4 # TODO(vtl): Add a way of specifying data dependencies instead. | 4 # System tests: |
|
viettrungluu
2014/12/03 16:15:37
This is obviously not JSON. What is it?
| |
| 5 { | |
| 6 "test": "mojo_system_unittests", | |
| 7 "run_on_android": true | |
| 8 }, | |
| 5 | 9 |
| 6 # System tests: | 10 # Public tests: |
| 7 mojo_system_unittests | 11 { |
| 12 "test": "mojo_public_bindings_unittests", | |
| 13 "cacheable": false | |
| 14 }, | |
| 15 { | |
| 16 "test": "mojo_public_environment_unittests" | |
| 17 }, | |
| 18 { | |
| 19 "test": "mojo_public_system_unittests" | |
| 20 }, | |
| 21 { | |
| 22 "test": "mojo_public_utility_unittests" | |
| 23 }, | |
| 8 | 24 |
| 9 # Public tests: | 25 # Non-system, non-public tests: |
| 10 *mojo_public_bindings_unittests | 26 { |
| 11 mojo_public_environment_unittests | 27 "test": "clipboard_unittests" |
| 12 mojo_public_system_unittests | 28 }, |
| 13 mojo_public_utility_unittests | 29 { |
| 30 "test": "mojo_application_manager_unittests" | |
| 31 }, | |
| 32 { | |
| 33 "test": "mojo_common_unittests" | |
| 34 }, | |
| 35 { | |
| 36 "test": "external_application_unittests" | |
| 37 }, | |
| 38 { | |
| 39 # These tests currently crash. We should re-enable them when they pass. | |
| 40 "test": "mojo_view_manager_lib_unittests", | |
| 41 "disabled": true | |
| 42 }, | |
| 43 { | |
| 44 "test": "mojo_surfaces_lib_unittests" | |
| 45 }, | |
| 46 { | |
| 47 "test": "view_manager_service_unittests" | |
| 48 }, | |
| 49 { | |
| 50 "test": "view_manager_unittests" | |
| 51 }, | |
| 52 { | |
| 53 "test": "window_manager_unittests" | |
| 54 }, | |
| 14 | 55 |
| 15 # Non-system, non-public tests: | 56 # JavaScript tests: |
| 16 clipboard_unittests | 57 { |
| 17 mojo_application_manager_unittests | 58 "test": "js_unittests", |
| 18 mojo_common_unittests | 59 "cacheable": false |
| 19 external_application_unittests | 60 }, |
| 20 # These tests currently crash. We should re-enable them when they pass. | 61 { |
| 21 # mojo_view_manager_lib_unittests | 62 "test": "js_integration_tests", |
| 22 mojo_surfaces_lib_unittests | 63 "cacheable": false |
| 23 view_manager_service_unittests | 64 }, |
| 24 view_manager_unittests | 65 { |
| 25 window_manager_unittests | 66 "test": "js_services_unittests", |
| 67 "cacheable": false | |
| 68 }, | |
| 26 | 69 |
| 27 # JavaScript tests: | 70 # Shell integration tests: |
| 28 *js_unittests | 71 { |
| 29 *js_integration_tests | 72 "test": "mojo_shell_tests", |
| 30 *js_services_unittests | 73 "cacheable": false |
| 31 | 74 } |
| 32 # Shell integration tests: | 75 ] |
| 33 *mojo_shell_tests | |
| OLD | NEW |