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