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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 { | 54 { |
55 "test": "window_manager_unittests", | 55 "test": "window_manager_unittests", |
56 "run_on_android": True, | 56 "run_on_android": True, |
57 }, | 57 }, |
58 | 58 |
59 # Tests for components we depend on: | 59 # Tests for components we depend on: |
60 { | 60 { |
61 "test": "gfx_unittests", | 61 "test": "gfx_unittests", |
62 }, | 62 }, |
63 { | 63 { |
64 # These tests currently crash on Release asan only. | |
65 "test": "events_unittests", | 64 "test": "events_unittests", |
66 "disabled": True, | |
67 }, | 65 }, |
68 | 66 |
69 # JavaScript tests: | 67 # JavaScript tests: |
70 { | 68 { |
71 "test": "js_unittests", | 69 "test": "js_unittests", |
72 "cacheable": False, | 70 "cacheable": False, |
73 }, | 71 }, |
74 { | 72 { |
75 "test": "js_integration_tests", | 73 "test": "js_integration_tests", |
76 "cacheable": False, | 74 "cacheable": False, |
77 }, | 75 }, |
78 { | 76 { |
79 "test": "js_services_unittests", | 77 "test": "js_services_unittests", |
80 "cacheable": False, | 78 "cacheable": False, |
81 }, | 79 }, |
82 | 80 |
83 # Shell integration tests: | 81 # Shell integration tests: |
84 { | 82 { |
85 "test": "mojo_shell_tests", | 83 "test": "mojo_shell_tests", |
86 "cacheable": False, | 84 "cacheable": False, |
87 "run_on_android": True, | 85 "run_on_android": True, |
88 }, | 86 }, |
89 ] | 87 ] |
OLD | NEW |