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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
73 '--use-x11-test-config', | 73 '--use-x11-test-config', |
74 '--override-use-gl-with-osmesa-for-tests'] | 74 '--override-use-gl-with-osmesa-for-tests'] |
75 }, | 75 }, |
76 # TODO(ben): These tests are disabled pending mandoline:browser refactoring. | 76 # TODO(ben): These tests are disabled pending mandoline:browser refactoring. |
77 #{ | 77 #{ |
78 # 'test': 'mojo:mandoline_browser_apptests', | 78 # 'test': 'mojo:mandoline_browser_apptests', |
79 # 'type': 'gtest_isolated', | 79 # 'type': 'gtest_isolated', |
80 # 'args': ['--use-headless-config'] | 80 # 'args': ['--use-headless-config'] |
81 #}, | 81 #}, |
82 { | 82 { |
83 'test': 'mojo:mandoline_frame_apptests', | 83 'test': 'mojo:web_view_apptests', |
msw
2015/09/09 18:20:46
nit: abc order?
sky
2015/09/09 18:34:37
Done.
| |
84 'type': 'gtest_isolated', | 84 'type': 'gtest_isolated', |
85 'args': ['--use-headless-config'] | 85 'args': ['--use-headless-config'] |
86 }, | 86 }, |
87 # TODO(xhwang): Fix and enable mojo:media_pipeline_integration_apptests. | 87 # TODO(xhwang): Fix and enable mojo:media_pipeline_integration_apptests. |
88 # http://crbug.com/501417 | 88 # http://crbug.com/501417 |
89 { | 89 { |
90 'test': 'mojo:media_apptests', | 90 'test': 'mojo:media_apptests', |
91 'type': 'gtest_isolated', | 91 'type': 'gtest_isolated', |
92 }, | 92 }, |
93 { | 93 { |
94 'test': 'mojo:sql_apptests', | 94 'test': 'mojo:sql_apptests', |
95 'type': 'gtest_isolated', | 95 'type': 'gtest_isolated', |
96 }, | 96 }, |
97 ] | 97 ] |
OLD | NEW |