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

Side by Side Diff: tests/imc_sockets/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/imc_shm_mmap/nacl.scons ('k') | tests/inbrowser_test_runner/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) 2011 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2011 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 8
9 if env.Bit('host_windows'): 9 if env.Bit('host_windows'):
10 # This test will hang when the SocketAddress implementation uses 10 # This test will hang when the SocketAddress implementation uses
11 # string tokens instead of FDs. 11 # string tokens instead of FDs.
12 test_args = ['DISABLE_IMC_ACCEPT_EOF_TEST=1'] 12 test_args = ['DISABLE_IMC_ACCEPT_EOF_TEST=1']
13 else: 13 else:
14 test_args = [] 14 test_args = []
15 15
16 env.ComponentProgram('socket_transfer_test.nexe', 'socket_transfer_test.c', 16 nexe = env.ComponentProgram('socket_transfer_test', 'socket_transfer_test.c',
17 EXTRA_LIBS=['imc_syscalls', 'pthread']) 17 EXTRA_LIBS=['imc_syscalls', 'pthread'])
18 18
19 node = env.CommandSelLdrTestNacl( 19 node = env.CommandSelLdrTestNacl(
20 'socket_transfer_test.out', 20 'socket_transfer_test.out',
21 command=[env.File('socket_transfer_test.nexe')] + test_args) 21 nexe,
22 args=test_args)
22 env.AddNodeToTestSuite(node, ['small_tests'], 'run_socket_transfer_test') 23 env.AddNodeToTestSuite(node, ['small_tests'], 'run_socket_transfer_test')
OLDNEW
« no previous file with comments | « tests/imc_shm_mmap/nacl.scons ('k') | tests/inbrowser_test_runner/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698