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

Side by Side Diff: tests/unittests/shared/imc/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/toolchain/nacl.scons ('k') | tests/unittests/shared/srpc/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 env.ComponentProgram('nacl_close_test.nexe', 8 nacl_close_test_nexe = env.ComponentProgram(
9 ['nacl_close_test.c'], 9 'nacl_close_test',
10 EXTRA_LIBS=['imc', 10 ['nacl_close_test.c'],
11 'imc_syscalls', 11 EXTRA_LIBS=['imc',
12 'platform', 12 'imc_syscalls',
13 'gio']) 13 'platform',
14 'gio'])
14 node = env.CommandSelLdrTestNacl( 15 node = env.CommandSelLdrTestNacl(
15 'nacl_close_test_nexe.out', 16 'nacl_close_test_nexe.out',
16 command=[env.File('nacl_close_test.nexe')], 17 nacl_close_test_nexe,
17 exit_status='0') 18 exit_status='0')
18 env.AddNodeToTestSuite(node, 19 env.AddNodeToTestSuite(node,
19 ['small_tests'], 20 ['small_tests'],
20 'run_nacl_close_test_nexe') 21 'run_nacl_close_test_nexe')
21 22
22 env.ComponentProgram('double_nacl_close_test.nexe', 23 double_nacl_close_test_nexe = env.ComponentProgram(
23 ['double_nacl_close_test.c'], 24 'double_nacl_close_test',
24 EXTRA_LIBS=['imc', 25 ['double_nacl_close_test.c'],
25 'imc_syscalls', 26 EXTRA_LIBS=['imc',
26 'platform', 27 'imc_syscalls',
27 'gio']) 28 'platform',
29 'gio'])
28 node = env.CommandSelLdrTestNacl( 30 node = env.CommandSelLdrTestNacl(
29 'double_nacl_close_test_nexe.out', 31 'double_nacl_close_test_nexe.out',
30 command=[env.File('double_nacl_close_test.nexe')], 32 double_nacl_close_test_nexe,
31 exit_status='0') 33 exit_status='0')
32 env.AddNodeToTestSuite(node, 34 env.AddNodeToTestSuite(node,
33 ['small_tests'], 35 ['small_tests'],
34 'run_double_nacl_close_test_nexe') 36 'run_double_nacl_close_test_nexe')
35 37
36 38
37 env.ComponentProgram('nacl_create_memory_object_test.nexe', 39 nacl_create_memory_object_test_nexe = env.ComponentProgram(
38 ['nacl_create_memory_object_test.c'], 40 'nacl_create_memory_object_test',
39 EXTRA_LIBS=['imc', 41 ['nacl_create_memory_object_test.c'],
40 'imc_syscalls', 42 EXTRA_LIBS=['imc',
41 'platform', 43 'imc_syscalls',
42 'gio']) 44 'platform',
45 'gio'])
43 node = env.CommandSelLdrTestNacl( 46 node = env.CommandSelLdrTestNacl(
44 'nacl_create_memory_object_test_nexe.out', 47 'nacl_create_memory_object_test_nexe.out',
45 command=[env.File('nacl_create_memory_object_test.nexe')], 48 nacl_create_memory_object_test_nexe,
46 exit_status='0') 49 exit_status='0')
47 env.AddNodeToTestSuite(node, 50 env.AddNodeToTestSuite(node,
48 ['small_tests'], 51 ['small_tests'],
49 'run_nacl_create_memory_object_test_nexe') 52 'run_nacl_create_memory_object_test_nexe')
OLDNEW
« no previous file with comments | « tests/toolchain/nacl.scons ('k') | tests/unittests/shared/srpc/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698