Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(473)

Side by Side Diff: tests/nonsfi/nacl.scons

Issue 424763007: Non-SFI Mode: Centralise test whitelists; move to Scons (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Rebase Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/nonsfi/linux/linux_syscalls.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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())
OLDNEW
« no previous file with comments | « src/nonsfi/linux/linux_syscalls.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698