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