| 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 }, |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 "test": "mojo:mojo_view_manager_client_apptests", | 26 "test": "mojo:mojo_view_manager_client_apptests", |
| 27 "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"], |
| 28 }, | 28 }, |
| 29 { | 29 { |
| 30 "test": "mojo:view_manager_service_apptests", | 30 "test": "mojo:view_manager_service_apptests", |
| 31 "shell-args": ["--args-for=mojo:native_viewport_service --use-headless-confi
g --use-osmesa"], | 31 "shell-args": ["--args-for=mojo:native_viewport_service --use-headless-confi
g --use-osmesa"], |
| 32 }, | 32 }, |
| 33 { | 33 { |
| 34 "test": "mojo:window_manager_apptests", | 34 "test": "mojo:window_manager_apptests", |
| 35 }, | 35 }, |
| 36 { |
| 37 "test": "mojo:shell_apptests", |
| 38 }, |
| 36 ] | 39 ] |
| 37 | 40 |
| 38 if config.target_os == config.OS_LINUX: | 41 if config.target_os == config.OS_LINUX: |
| 39 tests += [ | 42 tests += [ |
| 40 { | 43 { |
| 41 "test": "mojo:example_apptests", | 44 "test": "mojo:example_apptests", |
| 42 # ExampleApplicationTest.CheckCommandLineArg checks --example_apptest_arg. | 45 # ExampleApplicationTest.CheckCommandLineArg checks --example_apptest_arg. |
| 43 "test-args": ["--example_apptest_arg"], | 46 "test-args": ["--example_apptest_arg"], |
| 44 "shell-args": [ | 47 "shell-args": [ |
| 45 "--url-mappings=mojo:example_service=mojo:python_example_service" | 48 "--url-mappings=mojo:example_service=mojo:python_example_service" |
| (...skipping 30 matching lines...) Expand all 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 "type": "dart", | 87 "type": "dart", |
| 85 }, | 88 }, |
| 86 { | |
| 87 # https://github.com/domokit/mojo/issues/61 | |
| 88 # Sometime the shell get a trucated application when exposed through the | |
| 89 # http server. | |
| 90 "test": "mojo:shell_apptests", | |
| 91 }, | |
| 92 ] | 89 ] |
| OLD | NEW |