| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 { | 60 { |
| 61 "test": "mojo:view_manager_service_apptests", | 61 "test": "mojo:view_manager_service_apptests", |
| 62 "type": "gtest_isolated", | 62 "type": "gtest_isolated", |
| 63 "shell-args": ["--args-for=mojo:native_viewport_service --use-headless-confi
g --use-osmesa"], | 63 "shell-args": ["--args-for=mojo:native_viewport_service --use-headless-confi
g --use-osmesa"], |
| 64 }, | 64 }, |
| 65 { | 65 { |
| 66 "test": "mojo:network_service_apptests", | 66 "test": "mojo:network_service_apptests", |
| 67 }, | 67 }, |
| 68 { | 68 { |
| 69 "test": "mojo:window_manager_apptests", | 69 "test": "mojo:window_manager_apptests", |
| 70 "shell-args": ["--args-for=mojo:native_viewport_service --use-headless-confi
g --use-osmesa"], |
| 70 }, | 71 }, |
| 71 { | 72 { |
| 72 "test": "mojo:versioning_apptests", | 73 "test": "mojo:versioning_apptests", |
| 73 }, | 74 }, |
| 74 ] | 75 ] |
| 75 | 76 |
| 76 if config.target_os == config.OS_LINUX: | 77 if config.target_os == config.OS_LINUX: |
| 77 tests += [ | 78 tests += [ |
| 78 { | 79 { |
| 79 "test": "mojo:example_apptests", | 80 "test": "mojo:example_apptests", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 { | 122 { |
| 122 # https://github.com/domokit/mojo/issues/61 | 123 # https://github.com/domokit/mojo/issues/61 |
| 123 # Sometime the shell get a trucated application when exposed through the | 124 # Sometime the shell get a trucated application when exposed through the |
| 124 # http server. | 125 # http server. |
| 125 "test": "mojo:shell_apptests", | 126 "test": "mojo:shell_apptests", |
| 126 }, | 127 }, |
| 127 { | 128 { |
| 128 "test": "mojo:url_response_disk_cache_apptests", | 129 "test": "mojo:url_response_disk_cache_apptests", |
| 129 }, | 130 }, |
| 130 ] | 131 ] |
| OLD | NEW |