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

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

Issue 7242011: Get rid of assumptions about ".nexe" extension. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 6 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/srpc_message/nacl.scons ('k') | tests/startup_message/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 2010 The Native Client Authors. All rights reserved. 2 # Copyright 2010 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can 3 # Use of this source code is governed by a BSD-style license that can
4 # be found in the LICENSE file. 4 # be found in the LICENSE file.
5 5
6 Import('env') 6 Import('env')
7 7
8 env.ComponentProgram('stack_alignment_test.nexe', 'stack_alignment_test.c', 8 stack_alignment_test_nexe = env.ComponentProgram('stack_alignment_test',
9 EXTRA_LIBS=['pthread']) 9 'stack_alignment_test.c',
10 node = env.CommandSelLdrTestNacl( 10 EXTRA_LIBS=['pthread'])
11 'stack_alignment_test.out', 11 node = env.CommandSelLdrTestNacl('stack_alignment_test.out',
12 command=[env.File('stack_alignment_test.nexe')]) 12 stack_alignment_test_nexe)
13 env.AddNodeToTestSuite(node, ['small_tests'], 'run_stack_alignment_test') 13 env.AddNodeToTestSuite(node, ['small_tests'], 'run_stack_alignment_test')
14 14
15 if env.Bit('build_x86') and not env.Bit('bitcode'): 15 if env.Bit('build_x86') and not env.Bit('bitcode'):
16 # This tests use of x86-specific SSE operations. 16 # This tests use of x86-specific SSE operations.
17 env.ComponentProgram('sse_alignment_test.nexe', 'sse_alignment_test.c', 17 sse_alignment_test_nexe = env.ComponentProgram(
18 EXTRA_CFLAGS=['-msse2'], EXTRA_LIBS=['pthread']) 18 'sse_alignment_test',
19 node = env.CommandSelLdrTestNacl( 19 'sse_alignment_test.c',
20 'sse_alignment_test.out', 20 EXTRA_CFLAGS=['-msse2'],
21 command=[env.File('sse_alignment_test.nexe')]) 21 EXTRA_LIBS=['pthread'])
22 node = env.CommandSelLdrTestNacl('sse_alignment_test.out',
23 sse_alignment_test_nexe)
22 env.AddNodeToTestSuite(node, ['small_tests'], 'run_sse_alignment_test') 24 env.AddNodeToTestSuite(node, ['small_tests'], 'run_sse_alignment_test')
OLDNEW
« no previous file with comments | « tests/srpc_message/nacl.scons ('k') | tests/startup_message/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698