| 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 # | 2 # |
| 3 # This must be valid Python. It may use the |config| global that will be a | 3 # This must be valid Python. It may use the |config| global that will be a |
| 4 # mopy.config.Config object, and must set a |tests| global that will contain the | 4 # mopy.config.Config object, and must set a |tests| global that will contain the |
| 5 # list of tests to run. | 5 # list of tests to run. |
| 6 # | 6 # |
| 7 # The entries in |tests| are dictionaries of the following form: | 7 # The entries in |tests| are dictionaries of the following form: |
| 8 # { | 8 # { |
| 9 # # Required URL for apptest. | 9 # # Required URL for apptest. |
| 10 # "test": "mojo:test_app_url", | 10 # "test": "mojo:test_app_url", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 "test-args": ["--example_apptest_arg"], | 40 "test-args": ["--example_apptest_arg"], |
| 41 "shell-args": ["--enable-multiprocess"], | 41 "shell-args": ["--enable-multiprocess"], |
| 42 }, | 42 }, |
| 43 { | 43 { |
| 44 "test": "mojo:files_apptests", | 44 "test": "mojo:files_apptests", |
| 45 }, | 45 }, |
| 46 { | 46 { |
| 47 "test": "mojo:http_server_apptests", | 47 "test": "mojo:http_server_apptests", |
| 48 }, | 48 }, |
| 49 { | 49 { |
| 50 "test": "mojo:moterm_apptests", |
| 51 }, |
| 52 { |
| 50 "test": "mojo:network_service_apptests", | 53 "test": "mojo:network_service_apptests", |
| 51 }, | 54 }, |
| 52 { | 55 { |
| 53 "test": "mojo:mojo_view_manager_client_apptests", | 56 "test": "mojo:mojo_view_manager_client_apptests", |
| 54 "shell-args": ["--args-for=mojo:native_viewport_service --use-headless-confi
g --use-osmesa"], | 57 "shell-args": ["--args-for=mojo:native_viewport_service --use-headless-confi
g --use-osmesa"], |
| 55 }, | 58 }, |
| 56 { | 59 { |
| 57 "test": "mojo:view_manager_service_apptests", | 60 "test": "mojo:view_manager_service_apptests", |
| 58 "type": "gtest_isolated", | 61 "type": "gtest_isolated", |
| 59 "shell-args": ["--args-for=mojo:native_viewport_service --use-headless-confi
g --use-osmesa"], | 62 "shell-args": ["--args-for=mojo:native_viewport_service --use-headless-confi
g --use-osmesa"], |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 "test": "mojo:dart_apptests", | 118 "test": "mojo:dart_apptests", |
| 116 "type": "dart", | 119 "type": "dart", |
| 117 }, | 120 }, |
| 118 { | 121 { |
| 119 # https://github.com/domokit/mojo/issues/61 | 122 # https://github.com/domokit/mojo/issues/61 |
| 120 # Sometime the shell get a trucated application when exposed through the | 123 # Sometime the shell get a trucated application when exposed through the |
| 121 # http server. | 124 # http server. |
| 122 "test": "mojo:shell_apptests", | 125 "test": "mojo:shell_apptests", |
| 123 }, | 126 }, |
| 124 ] | 127 ] |
| OLD | NEW |