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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 { | 77 { |
78 'test': 'mojo:mandoline_browser_apptests', | 78 'test': 'mojo:mandoline_browser_apptests', |
79 'type': 'gtest_isolated', | 79 'type': 'gtest_isolated', |
80 }, | 80 }, |
81 { | 81 { |
82 'test': 'mojo:mash_wm_apptests', | 82 'test': 'mojo:mash_wm_apptests', |
83 'type': 'gtest_isolated', | 83 'type': 'gtest_isolated', |
84 'args': ['--use-x11-test-config', | 84 'args': ['--use-x11-test-config', |
85 '--override-use-gl-with-osmesa-for-tests'] | 85 '--override-use-gl-with-osmesa-for-tests'] |
86 }, | 86 }, |
87 # TODO(xhwang): Fix and enable mojo:media_pipeline_integration_apptests. | |
88 # http://crbug.com/501417 | |
89 { | 87 { |
90 'test': 'mojo:media_apptests', | 88 'test': 'mojo:media_apptests', |
91 'type': 'gtest_isolated', | 89 'type': 'gtest_isolated', |
92 }, | 90 }, |
| 91 { |
| 92 'test': 'mojo:media_pipeline_integration_apptests', |
| 93 'type': 'gtest_isolated', |
| 94 }, |
93 # TODO(crbug.com/560626): Fix and enable mus_apptests on Android. | 95 # TODO(crbug.com/560626): Fix and enable mus_apptests on Android. |
94 mus_apptests, | 96 mus_apptests, |
95 { | 97 { |
96 'test': 'mojo:sql_apptests', | 98 'test': 'mojo:sql_apptests', |
97 'type': 'gtest_isolated', | 99 'type': 'gtest_isolated', |
98 }, | 100 }, |
99 # TODO(sky): enable when works (http://crbug.com/577274 and likely | 101 # TODO(sky): enable when works (http://crbug.com/577274 and likely |
100 # http://crbug.com/569367). | 102 # http://crbug.com/569367). |
101 # { | 103 # { |
102 # 'test': 'mojo:views_apptests', | 104 # 'test': 'mojo:views_apptests', |
103 # 'type': 'gtest_isolated', | 105 # 'type': 'gtest_isolated', |
104 # 'args': ['--use-x11-test-config', | 106 # 'args': ['--use-x11-test-config', |
105 # '--override-use-gl-with-osmesa-for-tests', '--enable-logging'] | 107 # '--override-use-gl-with-osmesa-for-tests', '--enable-logging'] |
106 # }, | 108 # }, |
107 { | 109 { |
108 'test': 'mojo:web_view_apptests', | 110 'test': 'mojo:web_view_apptests', |
109 'type': 'gtest_isolated', | 111 'type': 'gtest_isolated', |
110 'args': ['--use-x11-test-config', | 112 'args': ['--use-x11-test-config', |
111 '--override-use-gl-with-osmesa-for-tests'] | 113 '--override-use-gl-with-osmesa-for-tests'] |
112 }, | 114 }, |
113 ] | 115 ] |
OLD | NEW |