| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Copyright 2014 The Native Client Authors. All rights reserved. | 2 # Copyright 2014 The Native Client Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 Import('env') | 6 Import('env') |
| 7 | 7 |
| 8 # Tests in this directory are for syscall wrappers required by newlib | 8 # Tests in this directory are for syscall wrappers required by newlib |
| 9 # based non-SFI nacl_helper. The rest of NaCl does not need them. | 9 # based non-SFI nacl_helper. The rest of NaCl does not need them. |
| 10 if not env.Bit('nonsfi_nacl') or env.Bit('tests_use_irt'): | 10 if not env.Bit('nonsfi_nacl') or env.Bit('tests_use_irt'): |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 node = env.CommandSelLdrTestNacl('sigaction_test.out', nexe) | 50 node = env.CommandSelLdrTestNacl('sigaction_test.out', nexe) |
| 51 | 51 |
| 52 env.AddNodeToTestSuite(node, ['small_tests'], 'run_sigaction_test') | 52 env.AddNodeToTestSuite(node, ['small_tests'], 'run_sigaction_test') |
| 53 | 53 |
| 54 nexe = env.ComponentProgram('signal_test', | 54 nexe = env.ComponentProgram('signal_test', |
| 55 'signal_test.cc', | 55 'signal_test.cc', |
| 56 EXTRA_LIBS=['${NONIRT_LIBS}']) | 56 EXTRA_LIBS=['${NONIRT_LIBS}']) |
| 57 | 57 |
| 58 node = env.CommandSelLdrTestNacl('signal_test.out', nexe) | 58 node = env.CommandSelLdrTestNacl('signal_test.out', nexe) |
| 59 | 59 |
| 60 env.AddNodeToTestSuite(node, ['small_tests'], 'run_signal_test') | 60 env.AddNodeToTestSuite(node, ['small_tests'], 'run_signal_test', |
| 61 is_broken=env.UsingEmulator()) |
| OLD | NEW |