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

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

Issue 636933004: stop building/testing old x86 validator. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: rebase master Created 6 years, 2 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 | « tests/stubout_mode/with_stubout.stdout ('k') | tests/toolchain/nacl.scons » ('j') | 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 (c) 2012 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2012 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 # This test is specific to the x86-32 sandbox, and is not portable. 8 # This test is specific to the x86-32 sandbox, and is not portable.
9 if not env.Bit('build_x86_32') or not env.AllowInlineAssembly(): 9 if not env.Bit('build_x86_32') or not env.AllowInlineAssembly():
10 Return() 10 Return()
11 11
12 test_prog = env.ComponentProgram( 12 test_prog = env.ComponentProgram(
13 'gs_segment_read_only_test', ['gs_segment_test.c'], 13 'gs_segment_read_only_test', ['gs_segment_test.c'],
14 EXTRA_LIBS=['${PTHREAD_LIBS}', '${NONIRT_LIBS}']) 14 EXTRA_LIBS=['${PTHREAD_LIBS}', '${NONIRT_LIBS}'])
15 15
16 for subtest in ('gs_segment_read_only_test', 16 for subtest in ('gs_segment_read_only_test',
17 'gs_segment_read_only_test_thread', 17 'gs_segment_read_only_test_thread',
18 'gs_segment_size_test', 18 'gs_segment_size_test',
19 'gs_segment_size_test_thread'): 19 'gs_segment_size_test_thread'):
20 node = env.CommandSelLdrTestNacl('%s.out' % subtest, 20 node = env.CommandSelLdrTestNacl('%s.out' % subtest,
21 test_prog, [subtest], declares_exit_status=True, 21 test_prog, [subtest], declares_exit_status=True,
22 # R-DFA rejects unaligned access to %gs at validation stage 22 # R-DFA rejects unaligned access to %gs at validation stage
23 sel_ldr_flags=(['-c'] if env.Bit('validator_ragel') else None)) 23 sel_ldr_flags=['-c'])
24 env.AddNodeToTestSuite(node, ['small_tests', 'nonpexe_tests'], 24 env.AddNodeToTestSuite(node, ['small_tests', 'nonpexe_tests'],
25 'run_%s' % subtest) 25 'run_%s' % subtest)
OLDNEW
« no previous file with comments | « tests/stubout_mode/with_stubout.stdout ('k') | tests/toolchain/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698