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

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

Issue 1996463003: Converted Mojo Common Unittests to run as Apptests. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Added apptests for data_pipe_utils and message_pump Created 4 years, 7 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 | « mojo/tools/data/apptests ('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 # This must be valid python. It can use the |config| global that will be a 2 # This must be valid python. It can use the |config| global that will be a
3 # mopy.config.Config object and must set a |tests| global that will contain the 3 # mopy.config.Config object and must set a |tests| global that will contain the
4 # tests to run. 4 # tests to run.
5 # TODO(vtl): Add a way of specifying data dependencies instead of cacheable. 5 # TODO(vtl): Add a way of specifying data dependencies instead of cacheable.
6 6
7 tests = [ 7 tests = [
8 # EDK tests: 8 # EDK tests:
9 { 9 {
10 "test": "mojo_edk_base_edk_unittests", 10 "test": "mojo_edk_base_edk_unittests",
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 { 50 {
51 "test": "base_unittests", 51 "test": "base_unittests",
52 }, 52 },
53 { 53 {
54 "test": "crypto_unittests", 54 "test": "crypto_unittests",
55 }, 55 },
56 { 56 {
57 "test": "mojo_application_manager_unittests", 57 "test": "mojo_application_manager_unittests",
58 }, 58 },
59 { 59 {
60 "test": "mojo_common_unittests",
61 },
62 {
63 "test": "mojo_converters_unittests", 60 "test": "mojo_converters_unittests",
64 }, 61 },
65 { 62 {
66 "test": "url_response_disk_cache_unittests", 63 "test": "url_response_disk_cache_unittests",
67 }, 64 },
68 65
69 # Shell integration tests: 66 # Shell integration tests:
70 { 67 {
71 "test": "mojo_shell_tests", 68 "test": "mojo_shell_tests",
72 "cacheable": False, 69 "cacheable": False,
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 "cacheable": False, 118 "cacheable": False,
122 }, 119 },
123 ] 120 ]
124 121
125 if config.target_os == config.OS_LINUX: 122 if config.target_os == config.OS_LINUX:
126 tests += [ 123 tests += [
127 { 124 {
128 "test": "sandbox_linux_unittests", 125 "test": "sandbox_linux_unittests",
129 }, 126 },
130 ] 127 ]
OLDNEW
« no previous file with comments | « mojo/tools/data/apptests ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698