| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 { | 63 { |
| 64 "test": "mojo:mandoline_frame_apptests", | 64 "test": "mojo:mandoline_frame_apptests", |
| 65 "type": "gtest_isolated", | 65 "type": "gtest_isolated", |
| 66 "args": ["--use-headless-config"] | 66 "args": ["--use-headless-config"] |
| 67 }, | 67 }, |
| 68 # TODO(xhwang): Fix and enable mojo:media_pipeline_integration_apptests. | 68 # TODO(xhwang): Fix and enable mojo:media_pipeline_integration_apptests. |
| 69 # http://crbug.com/501417 | 69 # http://crbug.com/501417 |
| 70 { | 70 { |
| 71 "test": "mojo:media_apptests", | 71 "test": "mojo:media_apptests", |
| 72 "type": "gtest_isolated", | 72 "type": "gtest_isolated", |
| 73 "args": ["--fast-app-destruction"] |
| 73 }, | 74 }, |
| 74 { | 75 { |
| 75 "test": "mojo:resource_provider_apptests", | 76 "test": "mojo:resource_provider_apptests", |
| 76 "type": "gtest_isolated", | 77 "type": "gtest_isolated", |
| 77 }, | 78 }, |
| 78 { | 79 { |
| 79 "test": "mojo:sql_apptests", | 80 "test": "mojo:sql_apptests", |
| 80 "type": "gtest_isolated", | 81 "type": "gtest_isolated", |
| 81 }, | 82 }, |
| 82 ] | 83 ] |
| OLD | NEW |