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

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

Issue 1709173002: mojo: Delay ApplicationTestBase shell disconnection. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: initial approach Created 4 years, 10 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
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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 { 58 {
59 'test': 'mojo:mash_wm_apptests', 59 'test': 'mojo:mash_wm_apptests',
60 'type': 'gtest_isolated', 60 'type': 'gtest_isolated',
61 'args': ['--use-x11-test-config', 61 'args': ['--use-x11-test-config',
62 '--override-use-gl-with-osmesa-for-tests'] 62 '--override-use-gl-with-osmesa-for-tests']
63 }, 63 },
64 { 64 {
65 'test': 'mojo:media_apptests', 65 'test': 'mojo:media_apptests',
66 'type': 'gtest_isolated', 66 'type': 'gtest_isolated',
67 }, 67 },
68 # TODO(media): these tests fail in debug, which has no bot-coverage. 68 {
69 # http://crbug.com/587523 69 'test': 'mojo:media_pipeline_integration_apptests',
70 # { 70 'type': 'gtest_isolated',
71 # 'test': 'mojo:media_pipeline_integration_apptests', 71 },
72 # 'type': 'gtest_isolated',
73 # },
74 # TODO(rockot): Flaky. Re-enable when brokering is sorted out. 72 # TODO(rockot): Flaky. Re-enable when brokering is sorted out.
75 # http://crbug.com/569367. 73 # http://crbug.com/569367.
76 # { 74 # {
77 # 'test': 'mojo:mojo_shell_apptests', 75 # 'test': 'mojo:mojo_shell_apptests',
78 # 'type': 'gtest_isolated', 76 # 'type': 'gtest_isolated',
79 # }, 77 # },
80 # TODO(crbug.com/560626): Fix and enable mus_apptests on Android. 78 # TODO(crbug.com/560626): Fix and enable mus_apptests on Android.
81 mus_apptests, 79 mus_apptests,
82 { 80 {
83 'test': 'mojo:sql_apptests', 81 'test': 'mojo:sql_apptests',
84 'type': 'gtest_isolated', 82 'type': 'gtest_isolated',
85 }, 83 },
86 # TODO(sky): enable when works (http://crbug.com/577274 and likely 84 # TODO(sky): enable when works (http://crbug.com/577274 and likely
87 # http://crbug.com/569367). 85 # http://crbug.com/569367).
88 # { 86 # {
89 # 'test': 'mojo:views_apptests', 87 # 'test': 'mojo:views_apptests',
90 # 'type': 'gtest_isolated', 88 # 'type': 'gtest_isolated',
91 # 'args': ['--use-x11-test-config', 89 # 'args': ['--use-x11-test-config',
92 # '--override-use-gl-with-osmesa-for-tests', '--enable-logging'] 90 # '--override-use-gl-with-osmesa-for-tests', '--enable-logging']
93 # }, 91 # },
94 { 92 {
95 'test': 'mojo:leveldb_apptests', 93 'test': 'mojo:leveldb_apptests',
96 'type': 'gtest_isolated', 94 'type': 'gtest_isolated',
97 } 95 }
98 ] 96 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698