| OLD | NEW |
| 1 # This file contains a list of Mojo apptests. For description of the file | 1 # This file contains a list of Mojo apptests. For description of the file |
| 2 # format, see `mojo_test` in devtools. | 2 # format, see `mojo_test` in devtools. |
| 3 | 3 |
| 4 tests = [ | 4 tests = [ |
| 5 { | 5 { |
| 6 "test": "mojo:asset_bundle_apptests", | 6 "test": "mojo:asset_bundle_apptests", |
| 7 }, | 7 }, |
| 8 { | 8 { |
| 9 "test": "mojo:authenticating_url_loader_interceptor_apptests", | 9 "test": "mojo:authenticating_url_loader_interceptor_apptests", |
| 10 }, | 10 }, |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 { | 73 { |
| 74 "test": "mojo:window_manager_apptests", | 74 "test": "mojo:window_manager_apptests", |
| 75 "shell-args": ["--args-for=mojo:native_viewport_service --use-headless-confi
g --use-osmesa"], | 75 "shell-args": ["--args-for=mojo:native_viewport_service --use-headless-confi
g --use-osmesa"], |
| 76 }, | 76 }, |
| 77 { | 77 { |
| 78 "test": "mojo:versioning_apptests", | 78 "test": "mojo:versioning_apptests", |
| 79 }, | 79 }, |
| 80 { | 80 { |
| 81 "test": "mojo:url_response_disk_cache_apptests", | 81 "test": "mojo:url_response_disk_cache_apptests", |
| 82 }, | 82 }, |
| 83 { |
| 84 "test": "mojo:platform_handle_apptests", |
| 85 }, |
| 86 { |
| 87 "test": "mojo:image_pipe_apptests", |
| 88 }, |
| 83 ] | 89 ] |
| 84 | 90 |
| 85 if target_os == 'linux': | 91 if target_os == 'linux': |
| 86 tests += [ | 92 tests += [ |
| 87 { | 93 { |
| 88 "test": "mojo:example_apptests", | 94 "test": "mojo:example_apptests", |
| 89 "name": "mojo:example_apptests (python_example_service)", | 95 "name": "mojo:example_apptests (python_example_service)", |
| 90 # ExampleApplicationTest.CheckCommandLineArg checks --example_apptest_arg. | 96 # ExampleApplicationTest.CheckCommandLineArg checks --example_apptest_arg. |
| 91 "test-args": ["--example_apptest_arg"], | 97 "test-args": ["--example_apptest_arg"], |
| 92 "shell-args": [ | 98 "shell-args": [ |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 # These tests rely on various things in /bin. | 143 # These tests rely on various things in /bin. |
| 138 "test": "mojo:native_support_apptests", | 144 "test": "mojo:native_support_apptests", |
| 139 }, | 145 }, |
| 140 { | 146 { |
| 141 # https://github.com/domokit/mojo/issues/61 | 147 # https://github.com/domokit/mojo/issues/61 |
| 142 # Sometime the shell get a trucated application when exposed through the | 148 # Sometime the shell get a trucated application when exposed through the |
| 143 # http server. | 149 # http server. |
| 144 "test": "mojo:shell_apptests", | 150 "test": "mojo:shell_apptests", |
| 145 }, | 151 }, |
| 146 ] | 152 ] |
| OLD | NEW |