OLD | NEW |
---|---|
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 ] |
OLD | NEW |