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

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

Issue 1654373002: C types and utilities to validate and access struct and message headers (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: review feedback, for trybots 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
« no previous file with comments | « mojo/public/c/bindings/tests/bindings_unittest.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 # 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 13 matching lines...) Expand all
24 { 24 {
25 "test": "mojo_edk_util_unittests", 25 "test": "mojo_edk_util_unittests",
26 }, 26 },
27 27
28 # Public tests: 28 # Public tests:
29 { 29 {
30 "test": "mojo_public_bindings_unittests", 30 "test": "mojo_public_bindings_unittests",
31 "cacheable": False, 31 "cacheable": False,
32 }, 32 },
33 { 33 {
34 "test": "mojo_public_c_bindings_unittests",
35 },
36 {
34 "test": "mojo_public_environment_unittests", 37 "test": "mojo_public_environment_unittests",
35 }, 38 },
36 { 39 {
37 "test": "mojo_public_system_unittests", 40 "test": "mojo_public_system_unittests",
38 }, 41 },
39 { 42 {
40 "test": "mojo_public_utility_unittests", 43 "test": "mojo_public_utility_unittests",
41 }, 44 },
42 { 45 {
43 "test": "mojo_system_impl_private_unittests", 46 "test": "mojo_system_impl_private_unittests",
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 "cacheable": False, 121 "cacheable": False,
119 }, 122 },
120 ] 123 ]
121 124
122 if config.target_os == config.OS_LINUX: 125 if config.target_os == config.OS_LINUX:
123 tests += [ 126 tests += [
124 { 127 {
125 "test": "sandbox_linux_unittests", 128 "test": "sandbox_linux_unittests",
126 }, 129 },
127 ] 130 ]
OLDNEW
« no previous file with comments | « mojo/public/c/bindings/tests/bindings_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698