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|msw): Add a way of specifying data dependencies. | 5 # TODO(vtl|msw): Add a way of specifying data dependencies. |
6 | 6 |
7 tests = [ | 7 tests = [ |
8 { | 8 { |
9 "test": "mojo:clipboard_apptests", | 9 "test": "mojo:clipboard_apptests", |
10 }, | 10 }, |
11 { | 11 { |
12 "test": "mojo:example_apptests", | 12 "test": "mojo:example_apptests", |
13 # ExampleApplicationTest.CheckCommandLineArg checks --example_apptest_arg. | 13 # ExampleApplicationTest.CheckCommandLineArg checks --example_apptest_arg. |
14 "test-args": ["--example_apptest_arg"], | 14 "test-args": ["--example_apptest_arg"], |
15 }, | 15 }, |
16 { | 16 { |
| 17 "test": "mojo:files_apptests", |
| 18 }, |
| 19 { |
17 "test": "mojo:http_server_apptests", | 20 "test": "mojo:http_server_apptests", |
18 }, | 21 }, |
19 { | 22 { |
20 "test": "mojo:network_service_apptests", | 23 "test": "mojo:network_service_apptests", |
21 }, | 24 }, |
22 { | 25 { |
23 "test": "mojo:mojo_view_manager_client_apptests", | 26 "test": "mojo:mojo_view_manager_client_apptests", |
24 "shell-args": ["--args-for=mojo:native_viewport_service --use-headless-confi
g --use-osmesa"], | 27 "shell-args": ["--args-for=mojo:native_viewport_service --use-headless-confi
g --use-osmesa"], |
25 }, | 28 }, |
26 { | 29 { |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 { | 79 { |
77 "test": "mojo:js_apptests", | 80 "test": "mojo:js_apptests", |
78 }, | 81 }, |
79 { | 82 { |
80 "test": "mojo:reaper_apptests", | 83 "test": "mojo:reaper_apptests", |
81 }, | 84 }, |
82 { | 85 { |
83 "test": "mojo:dart_apptests", | 86 "test": "mojo:dart_apptests", |
84 }, | 87 }, |
85 ] | 88 ] |
OLD | NEW |