| OLD | NEW |
| (Empty) |
| 1 # This file contains a list of NaCl Mojo gtest unit tests. | |
| 2 # This must be a valid python dictionary. | |
| 3 # TODO(vtl|msw): Add a way of specifying data dependencies. | |
| 4 tests = [ | |
| 5 # TODO(ncbray): support other architectures. | |
| 6 { | |
| 7 "test": "mojo:clipboard_apptests_x64.nexe", | |
| 8 }, | |
| 9 { | |
| 10 "test": "mojo:example_apptests_x64.nexe", | |
| 11 # ExampleApplicationTest.CheckCommandLineArg checks --example_apptest_arg. | |
| 12 "test-args": ["--example_apptest_arg"], | |
| 13 }, | |
| 14 { | |
| 15 "test": "mojo:files_apptests_x64.nexe", | |
| 16 }, | |
| 17 { | |
| 18 "test": "mojo:shell_apptests_x64.nexe", | |
| 19 }, | |
| 20 # TODO(ncbray): http_server_apptests (uses two-stage data pipe reads) | |
| 21 ] | |
| OLD | NEW |