Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: mojo/tools/data/apptests

Issue 1341073004: Fix bug in shut down of HTMLViewer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge 2 trunk Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/html_viewer/global_state.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 view_manager_apptests, 49 view_manager_apptests,
50 ] 50 ]
51 51
52 # TODO(msw): Get these tests passing on Android too. http://crbug.com/486220 52 # TODO(msw): Get these tests passing on Android too. http://crbug.com/486220
53 if config.target_os != config.OS_ANDROID: 53 if config.target_os != config.OS_ANDROID:
54 tests += [ 54 tests += [
55 { 55 {
56 'test': 'mojo:filesystem_apptests', 56 'test': 'mojo:filesystem_apptests',
57 'type': 'gtest_isolated', 57 'type': 'gtest_isolated',
58 }, 58 },
59 # TODO(sky): reenable once 531120 is fixed. 59 {
60 # { 60 'test': 'mojo:html_viewer_apptests',
61 # 'test': 'mojo:html_viewer_apptests', 61 'name': 'mojo:html_viewer_apptests',
62 # 'name': 'mojo:html_viewer_apptests', 62 'type': 'gtest_isolated',
63 # 'type': 'gtest_isolated', 63 'args': ['--enable-html-viewer-test-interface',
64 # 'args': ['--enable-html-viewer-test-interface', 64 '--use-x11-test-config',
65 # '--use-x11-test-config', 65 '--override-use-gl-with-osmesa-for-tests']
66 # '--override-use-gl-with-osmesa-for-tests'] 66 },
67 # }, 67 {
68 # { 68 'test': 'mojo:html_viewer_apptests',
69 # 'test': 'mojo:html_viewer_apptests', 69 'name': 'mojo:html_viewer_apptests new frame',
70 # 'name': 'mojo:html_viewer_apptests new frame', 70 'type': 'gtest_isolated',
71 # 'type': 'gtest_isolated', 71 'args': ['--oopif-always-create-new-frame-tree',
72 # 'args': ['--oopif-always-create-new-frame-tree', 72 '--enable-html-viewer-test-interface',
73 # '--enable-html-viewer-test-interface', 73 '--use-x11-test-config',
74 # '--use-x11-test-config', 74 '--override-use-gl-with-osmesa-for-tests']
75 # '--override-use-gl-with-osmesa-for-tests'] 75 },
76 # },
77 # TODO(ben): These tests are disabled pending mandoline:browser refactoring. 76 # TODO(ben): These tests are disabled pending mandoline:browser refactoring.
78 #{ 77 #{
79 # 'test': 'mojo:mandoline_browser_apptests', 78 # 'test': 'mojo:mandoline_browser_apptests',
80 # 'type': 'gtest_isolated', 79 # 'type': 'gtest_isolated',
81 # 'args': ['--use-headless-config'] 80 # 'args': ['--use-headless-config']
82 #}, 81 #},
83 # TODO(xhwang): Fix and enable mojo:media_pipeline_integration_apptests. 82 # TODO(xhwang): Fix and enable mojo:media_pipeline_integration_apptests.
84 # http://crbug.com/501417 83 # http://crbug.com/501417
85 { 84 {
86 'test': 'mojo:media_apptests', 85 'test': 'mojo:media_apptests',
87 'type': 'gtest_isolated', 86 'type': 'gtest_isolated',
88 }, 87 },
89 { 88 {
90 'test': 'mojo:sql_apptests', 89 'test': 'mojo:sql_apptests',
91 'type': 'gtest_isolated', 90 'type': 'gtest_isolated',
92 }, 91 },
93 { 92 {
94 'test': 'mojo:web_view_apptests', 93 'test': 'mojo:web_view_apptests',
95 'type': 'gtest_isolated', 94 'type': 'gtest_isolated',
96 'args': ['--use-x11-test-config', 95 'args': ['--use-x11-test-config',
97 '--override-use-gl-with-osmesa-for-tests'] 96 '--override-use-gl-with-osmesa-for-tests']
98 }, 97 },
99 ] 98 ]
OLDNEW
« no previous file with comments | « components/html_viewer/global_state.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698