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

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

Issue 1445163002: Enabling Base Unit Tests (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Updated unittest location Created 5 years, 1 month 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 | « base/test/icu_test_util.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_embedder_unittests", 10 "test": "mojo_edk_embedder_unittests",
(...skipping 21 matching lines...) Expand all
32 }, 32 },
33 { 33 {
34 "test": "mojo_public_utility_unittests", 34 "test": "mojo_public_utility_unittests",
35 }, 35 },
36 { 36 {
37 "test": "mojo_system_impl_private_unittests", 37 "test": "mojo_system_impl_private_unittests",
38 }, 38 },
39 39
40 # Non-system, non-public tests: 40 # Non-system, non-public tests:
41 { 41 {
42 "test": "base_unittests",
43 },
44 {
42 "test": "crypto_unittests", 45 "test": "crypto_unittests",
43 }, 46 },
44 { 47 {
45 "test": "mojo_application_manager_unittests", 48 "test": "mojo_application_manager_unittests",
46 }, 49 },
47 { 50 {
48 "test": "mojo_common_unittests", 51 "test": "mojo_common_unittests",
49 }, 52 },
50 { 53 {
51 "test": "mojo_converters_unittests", 54 "test": "mojo_converters_unittests",
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 "cacheable": False, 112 "cacheable": False,
110 }, 113 },
111 ] 114 ]
112 115
113 if config.target_os == config.OS_LINUX: 116 if config.target_os == config.OS_LINUX:
114 tests += [ 117 tests += [
115 { 118 {
116 "test": "sandbox_linux_unittests", 119 "test": "sandbox_linux_unittests",
117 }, 120 },
118 ] 121 ]
OLDNEW
« no previous file with comments | « base/test/icu_test_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698