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 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 }, | 59 }, |
60 { | 60 { |
61 "test": "js_services_unittests", | 61 "test": "js_services_unittests", |
62 "cacheable": False, | 62 "cacheable": False, |
63 }, | 63 }, |
64 | 64 |
65 # Shell integration tests: | 65 # Shell integration tests: |
66 { | 66 { |
67 "test": "mojo_shell_tests", | 67 "test": "mojo_shell_tests", |
68 "cacheable": False, | 68 "cacheable": False, |
| 69 "run_on_android": True, |
69 }, | 70 }, |
70 ] | 71 ] |
OLD | NEW |