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

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

Issue 1382713002: Creating a pexe content handler to translate and run pexes. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Added Mojom interface to communicate with translation nexes 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
OLDNEW
1 # This file contains a list of Non-SFI NaCl Mojo gtest app tests. 1 # This file contains a list of Non-SFI NaCl Mojo gtest app tests.
2 # This must be a valid python dictionary. 2 # This must be a valid python dictionary.
3 tests = [ 3 tests = [
4 { 4 {
5 "test": "mojo:monacl_test_nonsfi", 5 "test": "mojo:monacl_test_nonsfi",
6 # Multiprocess mode is required for the nonsfi nacl tests: the content 6 # Multiprocess mode is required for the nonsfi nacl tests: the content
Mark Seaborn 2015/10/27 17:30:20 This command now applies to all the tests here, ri
Sean Klein 2015/10/28 17:02:41 Done.
7 # handler for these tests must exist in a 32-bit process but the parent 7 # handler for these tests must exist in a 32-bit process but the parent
8 # may be a 64-bit process. This makes multithreading insufficient for 8 # may be a 64-bit process. This makes multithreading insufficient for
9 # these tests. 9 # these tests.
10 "shell-args": ["--enable-multiprocess"], 10 "shell-args": ["--enable-multiprocess"],
11 }, 11 },
12
13 {
14 "test": "mojo:shell_apptests.pexe",
15 "shell-args": ["--enable-multiprocess"],
16 },
17 {
18 "test": "mojo:http_server_apptests.pexe",
19 "shell-args": ["--enable-multiprocess"],
20 },
21 {
22 "test": "mojo:clipboard_apptests.pexe",
23 "shell-args": ["--enable-multiprocess"],
24 },
25 {
26 "test": "mojo:example_apptests.pexe",
27 # ExampleApplicationTest.CheckCommandLineArg checks --example_apptest_arg.
28 "shell-args": ["--enable-multiprocess"],
29 "test-args": ["--example_apptest_arg"],
30 },
31 {
32 "test": "mojo:files_apptests.pexe",
33 "shell-args": ["--enable-multiprocess"],
34 },
35 {
36 "test": "mojo:mojo_view_manager_client_apptests.pexe",
37 "shell-args": ["--enable-multiprocess", "--args-for=mojo:native_viewport_ser vice --use-headless-config --use-osmesa"],
38 },
39 # TODO(smklein) Include "view_manager_service_apptests" once it isn't as slow.
Mark Seaborn 2015/10/27 17:30:20 Nit: indent this
Sean Klein 2015/10/28 17:02:41 Done.
40 {
41 "test": "mojo:window_manager_apptests.pexe",
42 "shell-args": ["--enable-multiprocess"],
43 },
44
12 ] 45 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698