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

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

Issue 1320013003: Enable sandbox_linux_unittests on Android (Closed) Base URL: ssh://ssh.github.com/domokit/mojo.git@master
Patch Set: Oops it's Python. Created 5 years, 3 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 | « BUILD.gn ('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 # System tests: 8 # System tests:
9 { 9 {
10 "test": "mojo_system_unittests", 10 "test": "mojo_system_unittests",
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 88
89 # TODO: get dart unittests working with android. 89 # TODO: get dart unittests working with android.
90 if config.target_os != config.OS_ANDROID: 90 if config.target_os != config.OS_ANDROID:
91 tests += [ 91 tests += [
92 { 92 {
93 "test": "dart_unittests", 93 "test": "dart_unittests",
94 "cacheable": False, 94 "cacheable": False,
95 }, 95 },
96 ] 96 ]
97 97
98 if config.target_os == config.OS_LINUX: 98 if config.target_os == config.OS_LINUX or config.target_os == config.OS_ANDROID:
jamesr 2015/08/27 19:19:34 i believe OS_LINUX and OS_ANDROID are the only pos
jln (very slow on Chromium) 2015/08/27 20:03:57 Done.
99 tests += [ 99 tests += [
100 { 100 {
101 "test": "sandbox_linux_unittests", 101 "test": "sandbox_linux_unittests",
102 }, 102 },
103 ] 103 ]
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698