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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/toolchain/nacl.scons ('k') | tests/unittests/shared/srpc/nacl.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/unittests/shared/imc/nacl.scons
===================================================================
--- tests/unittests/shared/imc/nacl.scons (revision 5777)
+++ tests/unittests/shared/imc/nacl.scons (working copy)
@@ -5,44 +5,47 @@
Import('env')
-env.ComponentProgram('nacl_close_test.nexe',
- ['nacl_close_test.c'],
- EXTRA_LIBS=['imc',
- 'imc_syscalls',
- 'platform',
- 'gio'])
+nacl_close_test_nexe = env.ComponentProgram(
+ 'nacl_close_test',
+ ['nacl_close_test.c'],
+ EXTRA_LIBS=['imc',
+ 'imc_syscalls',
+ 'platform',
+ 'gio'])
node = env.CommandSelLdrTestNacl(
'nacl_close_test_nexe.out',
- command=[env.File('nacl_close_test.nexe')],
+ nacl_close_test_nexe,
exit_status='0')
env.AddNodeToTestSuite(node,
['small_tests'],
'run_nacl_close_test_nexe')
-env.ComponentProgram('double_nacl_close_test.nexe',
- ['double_nacl_close_test.c'],
- EXTRA_LIBS=['imc',
- 'imc_syscalls',
- 'platform',
- 'gio'])
+double_nacl_close_test_nexe = env.ComponentProgram(
+ 'double_nacl_close_test',
+ ['double_nacl_close_test.c'],
+ EXTRA_LIBS=['imc',
+ 'imc_syscalls',
+ 'platform',
+ 'gio'])
node = env.CommandSelLdrTestNacl(
'double_nacl_close_test_nexe.out',
- command=[env.File('double_nacl_close_test.nexe')],
+ double_nacl_close_test_nexe,
exit_status='0')
env.AddNodeToTestSuite(node,
['small_tests'],
'run_double_nacl_close_test_nexe')
-env.ComponentProgram('nacl_create_memory_object_test.nexe',
- ['nacl_create_memory_object_test.c'],
- EXTRA_LIBS=['imc',
- 'imc_syscalls',
- 'platform',
- 'gio'])
+nacl_create_memory_object_test_nexe = env.ComponentProgram(
+ 'nacl_create_memory_object_test',
+ ['nacl_create_memory_object_test.c'],
+ EXTRA_LIBS=['imc',
+ 'imc_syscalls',
+ 'platform',
+ 'gio'])
node = env.CommandSelLdrTestNacl(
'nacl_create_memory_object_test_nexe.out',
- command=[env.File('nacl_create_memory_object_test.nexe')],
+ nacl_create_memory_object_test_nexe,
exit_status='0')
env.AddNodeToTestSuite(node,
['small_tests'],
« 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