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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 'type': 'gtest_isolated', | 70 'type': 'gtest_isolated', |
71 'args': ['--oopif-always-create-new-frame-tree', | 71 'args': ['--oopif-always-create-new-frame-tree', |
72 '--enable-html-viewer-test-interface', | 72 '--enable-html-viewer-test-interface', |
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 { | 76 { |
77 'test': 'mojo:mandoline_browser_apptests', | 77 'test': 'mojo:mandoline_browser_apptests', |
78 'type': 'gtest_isolated', | 78 'type': 'gtest_isolated', |
79 }, | 79 }, |
| 80 { |
| 81 'test': 'mojo:mash_wm_apptests', |
| 82 'type': 'gtest_isolated', |
| 83 'args': ['--use-x11-test-config', |
| 84 '--override-use-gl-with-osmesa-for-tests'] |
| 85 }, |
80 # TODO(xhwang): Fix and enable mojo:media_pipeline_integration_apptests. | 86 # TODO(xhwang): Fix and enable mojo:media_pipeline_integration_apptests. |
81 # http://crbug.com/501417 | 87 # http://crbug.com/501417 |
82 { | 88 { |
83 'test': 'mojo:media_apptests', | 89 'test': 'mojo:media_apptests', |
84 'type': 'gtest_isolated', | 90 'type': 'gtest_isolated', |
85 }, | 91 }, |
86 { | 92 { |
87 'test': 'mojo:sql_apptests', | 93 'test': 'mojo:sql_apptests', |
88 'type': 'gtest_isolated', | 94 'type': 'gtest_isolated', |
89 }, | 95 }, |
90 { | 96 { |
91 'test': 'mojo:web_view_apptests', | 97 'test': 'mojo:web_view_apptests', |
92 'type': 'gtest_isolated', | 98 'type': 'gtest_isolated', |
93 'args': ['--use-x11-test-config', | 99 'args': ['--use-x11-test-config', |
94 '--override-use-gl-with-osmesa-for-tests'] | 100 '--override-use-gl-with-osmesa-for-tests'] |
95 }, | 101 }, |
96 ] | 102 ] |
OLD | NEW |