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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
76 'test': 'mojo:mandoline_browser_apptests', | 76 'test': 'mojo:mandoline_browser_apptests', |
77 'type': 'gtest_isolated', | 77 'type': 'gtest_isolated', |
78 }, | 78 }, |
79 # TODO(sky): reenable when 569367 is fixed. | 79 # TODO(sky): reenable when 569367 is fixed. |
80 # { | 80 # { |
81 # 'test': 'mojo:mash_wm_apptests', | 81 # 'test': 'mojo:mash_wm_apptests', |
82 # 'type': 'gtest_isolated', | 82 # 'type': 'gtest_isolated', |
83 # 'args': ['--use-x11-test-config', | 83 # 'args': ['--use-x11-test-config', |
84 # '--override-use-gl-with-osmesa-for-tests'] | 84 # '--override-use-gl-with-osmesa-for-tests'] |
85 # }, | 85 # }, |
86 # TODO(xhwang): Fix and enable mojo:media_pipeline_integration_apptests. | |
87 # http://crbug.com/501417 | |
88 { | 86 { |
89 'test': 'mojo:media_apptests', | 87 'test': 'mojo:media_apptests', |
90 'type': 'gtest_isolated', | 88 'type': 'gtest_isolated', |
91 }, | 89 }, |
90 { | |
91 'test': 'mojo:media_pipeline_integration_apptests', | |
sky
2016/01/21 20:31:39
Is this depended on by the target the builders loo
jrummell
2016/01/26 19:47:41
I think so, assuming media_apptests was done prope
sky
2016/01/26 23:27:23
I think it safer to update the mojo_apptests in sr
jrummell
2016/01/27 00:55:27
Done.
| |
92 'type': 'gtest_isolated', | |
93 }, | |
92 # TODO(crbug.com/560626): Fix and enable mus_apptests on Android. | 94 # TODO(crbug.com/560626): Fix and enable mus_apptests on Android. |
93 mus_apptests, | 95 mus_apptests, |
94 { | 96 { |
95 'test': 'mojo:sql_apptests', | 97 'test': 'mojo:sql_apptests', |
96 'type': 'gtest_isolated', | 98 'type': 'gtest_isolated', |
97 }, | 99 }, |
98 # TODO(sky): enable when works (http://crbug.com/577274 and likely | 100 # TODO(sky): enable when works (http://crbug.com/577274 and likely |
99 # http://crbug.com/569367). | 101 # http://crbug.com/569367). |
100 # { | 102 # { |
101 # 'test': 'mojo:views_apptests', | 103 # 'test': 'mojo:views_apptests', |
102 # 'type': 'gtest_isolated', | 104 # 'type': 'gtest_isolated', |
103 # 'args': ['--use-x11-test-config', | 105 # 'args': ['--use-x11-test-config', |
104 # '--override-use-gl-with-osmesa-for-tests', '--enable-logging'] | 106 # '--override-use-gl-with-osmesa-for-tests', '--enable-logging'] |
105 # }, | 107 # }, |
106 { | 108 { |
107 'test': 'mojo:web_view_apptests', | 109 'test': 'mojo:web_view_apptests', |
108 'type': 'gtest_isolated', | 110 'type': 'gtest_isolated', |
109 'args': ['--use-x11-test-config', | 111 'args': ['--use-x11-test-config', |
110 '--override-use-gl-with-osmesa-for-tests'] | 112 '--override-use-gl-with-osmesa-for-tests'] |
111 }, | 113 }, |
112 ] | 114 ] |
OLD | NEW |