| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "type": "gtest_isolated", | 44 "type": "gtest_isolated", |
| 45 "shell-args": [ | 45 "shell-args": [ |
| 46 "--use-headless-config", | 46 "--use-headless-config", |
| 47 "--url-mappings=mojo:window_manager=mojo:test_window_manager" | 47 "--url-mappings=mojo:window_manager=mojo:test_window_manager" |
| 48 ] | 48 ] |
| 49 }, | 49 }, |
| 50 { | 50 { |
| 51 "test": "mojo:window_manager_apptests", | 51 "test": "mojo:window_manager_apptests", |
| 52 "shell-args": ["--use-headless-config"] | 52 "shell-args": ["--use-headless-config"] |
| 53 }, | 53 }, |
| 54 { | |
| 55 "test": "mojo:resource_provider_apptests", | |
| 56 }, | |
| 57 ] | 54 ] |
| OLD | NEW |