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

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

Issue 922903002: Enables ASAN build and test for Dart (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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 # 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 # System tests: 8 # System tests:
9 { 9 {
10 "test": "mojo_system_unittests", 10 "test": "mojo_system_unittests",
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 { 73 {
74 "test": "js_integration_tests", 74 "test": "js_integration_tests",
75 "cacheable": False, 75 "cacheable": False,
76 }, 76 },
77 { 77 {
78 "test": "js_services_unittests", 78 "test": "js_services_unittests",
79 "cacheable": False, 79 "cacheable": False,
80 }, 80 },
81 ] 81 ]
82 82
83 # TODO: get dart unittests working with asan and android. 83 # TODO: get dart unittests working with android.
84 if not config.sanitizer and config.target_os != config.OS_ANDROID: 84 if config.target_os != config.OS_ANDROID:
85 tests += [ 85 tests += [
86 { 86 {
87 "test": "dart_unittests", 87 "test": "dart_unittests",
88 "cacheable": False, 88 "cacheable": False,
89 }, 89 },
90 ] 90 ]
OLDNEW
« mojo/BUILD.gn ('K') | « mojo/tools/data/apptests ('k') | services/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698