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 # |
| 4 # Multiprocess mode is required for the nonsfi nacl tests: the content |
| 5 # handler for these tests must exist in a 32-bit process but the parent |
| 6 # may be a 64-bit process. This makes multithreading insufficient for |
| 7 # these tests. |
3 tests = [ | 8 tests = [ |
4 { | 9 { |
5 "test": "mojo:monacl_test_nonsfi", | 10 "test": "mojo:monacl_test_nonsfi", |
6 # Multiprocess mode is required for the nonsfi nacl tests: the content | |
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 | |
9 # these tests. | |
10 "shell-args": ["--enable-multiprocess"], | 11 "shell-args": ["--enable-multiprocess"], |
11 }, | 12 }, |
| 13 |
| 14 { |
| 15 "test": "mojo:shell_apptests.pexe", |
| 16 "shell-args": ["--enable-multiprocess"], |
| 17 }, |
| 18 { |
| 19 "test": "mojo:http_server_apptests.pexe", |
| 20 "shell-args": ["--enable-multiprocess"], |
| 21 }, |
| 22 { |
| 23 "test": "mojo:clipboard_apptests.pexe", |
| 24 "shell-args": ["--enable-multiprocess"], |
| 25 }, |
| 26 { |
| 27 "test": "mojo:example_apptests.pexe", |
| 28 # ExampleApplicationTest.CheckCommandLineArg checks --example_apptest_arg. |
| 29 "shell-args": ["--enable-multiprocess"], |
| 30 "test-args": ["--example_apptest_arg"], |
| 31 }, |
| 32 { |
| 33 "test": "mojo:files_apptests.pexe", |
| 34 "shell-args": ["--enable-multiprocess"], |
| 35 }, |
| 36 { |
| 37 "test": "mojo:mojo_view_manager_client_apptests.pexe", |
| 38 "shell-args": ["--enable-multiprocess", "--args-for=mojo:native_viewport_ser
vice --use-headless-config --use-osmesa"], |
| 39 }, |
| 40 # TODO(smklein) Include "view_manager_service_apptests" once it isn't as slow. |
| 41 { |
| 42 "test": "mojo:window_manager_apptests.pexe", |
| 43 "shell-args": ["--enable-multiprocess"], |
| 44 }, |
| 45 |
12 ] | 46 ] |
OLD | NEW |