| 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 { |
| 17 "test": "mojo:file_manager_apptests", |
| 18 }, |
| 16 # Network service is now developed in Chromium and we run apptests there, | 19 # Network service is now developed in Chromium and we run apptests there, |
| 17 # but we should be downloading their apptest binaries along with the service | 20 # but we should be downloading their apptest binaries along with the service |
| 18 # binaries and reenable the test here, as we have better platform coverage on | 21 # binaries and reenable the test here, as we have better platform coverage on |
| 19 # the Mojo waterfall. TODO(ppi): reenable. | 22 # the Mojo waterfall. TODO(ppi): reenable. |
| 20 #{ | 23 #{ |
| 21 # "test": "mojo:network_service_apptests", | 24 # "test": "mojo:network_service_apptests", |
| 22 #}, | 25 #}, |
| 23 { | 26 { |
| 24 "test": "mojo:view_manager_service_apptests", | 27 "test": "mojo:view_manager_service_apptests", |
| 25 "shell-args": ["--args-for=mojo:native_viewport_service --use-headless-confi
g --use-osmesa"], | 28 "shell-args": ["--args-for=mojo:native_viewport_service --use-headless-confi
g --use-osmesa"], |
| (...skipping 29 matching lines...) Expand all Loading... |
| 55 ], | 58 ], |
| 56 "launched-services": ["test:example_service"], | 59 "launched-services": ["test:example_service"], |
| 57 }, | 60 }, |
| 58 { | 61 { |
| 59 "test": "mojo:js_apptests", | 62 "test": "mojo:js_apptests", |
| 60 }, | 63 }, |
| 61 { | 64 { |
| 62 "test": "mojo:reaper_apptests", | 65 "test": "mojo:reaper_apptests", |
| 63 }, | 66 }, |
| 64 ] | 67 ] |
| OLD | NEW |