| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 { | 59 { |
| 60 "test": "mojo:ui_unittests", | 60 "test": "mojo:ui_unittests", |
| 61 "shell-args": ["--args-for=mojo:native_viewport_service --use-headless-confi
g --use-osmesa"], | 61 "shell-args": ["--args-for=mojo:native_viewport_service --use-headless-confi
g --use-osmesa"], |
| 62 }, | 62 }, |
| 63 { | 63 { |
| 64 "test": "mojo:url_response_disk_cache_apptests", | 64 "test": "mojo:url_response_disk_cache_apptests", |
| 65 }, | 65 }, |
| 66 { | 66 { |
| 67 "test": "mojo:versioning_apptests", | 67 "test": "mojo:versioning_apptests", |
| 68 }, | 68 }, |
| 69 { |
| 70 "test": "mojo:platform_handle_private_apptests", |
| 71 }, |
| 72 { |
| 73 "test": "mojo:image_pipe_apptests", |
| 74 }, |
| 69 ] | 75 ] |
| 70 | 76 |
| 71 if target_os == 'linux': | 77 if target_os == 'linux': |
| 72 tests += [ | 78 tests += [ |
| 73 { | 79 { |
| 74 "test": "mojo:example_apptests", | 80 "test": "mojo:example_apptests", |
| 75 "name": "mojo:example_apptests (python_example_service)", | 81 "name": "mojo:example_apptests (python_example_service)", |
| 76 # ExampleApplicationTest.CheckCommandLineArg checks --example_apptest_arg. | 82 # ExampleApplicationTest.CheckCommandLineArg checks --example_apptest_arg. |
| 77 "test-args": ["--example_apptest_arg"], | 83 "test-args": ["--example_apptest_arg"], |
| 78 "shell-args": [ | 84 "shell-args": [ |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 # These tests rely on various things in /bin. | 137 # These tests rely on various things in /bin. |
| 132 "test": "mojo:native_support_apptests", | 138 "test": "mojo:native_support_apptests", |
| 133 }, | 139 }, |
| 134 { | 140 { |
| 135 # https://github.com/domokit/mojo/issues/61 | 141 # https://github.com/domokit/mojo/issues/61 |
| 136 # Sometime the shell get a trucated application when exposed through the | 142 # Sometime the shell get a trucated application when exposed through the |
| 137 # http server. | 143 # http server. |
| 138 "test": "mojo:shell_apptests", | 144 "test": "mojo:shell_apptests", |
| 139 }, | 145 }, |
| 140 ] | 146 ] |
| OLD | NEW |