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

Unified Diff: tests/syscall_return_sandboxing/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/sysbasic/nacl.scons ('k') | tests/syscalls/nacl.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/syscall_return_sandboxing/nacl.scons
===================================================================
--- tests/syscall_return_sandboxing/nacl.scons (revision 5777)
+++ tests/syscall_return_sandboxing/nacl.scons (working copy)
@@ -36,19 +36,21 @@
asm_obj = asm_env.ComponentObject(GetAssemblerFile(env))
-use_obj_env.ComponentProgram('syscall_return_sandboxing.nexe',
- ['syscall_return_sandboxing.c', asm_obj])
+syscall_return_sandboxing_nexe = use_obj_env.ComponentProgram(
+ 'syscall_return_sandboxing',
+ ['syscall_return_sandboxing.c', asm_obj])
node = env.CommandSelLdrTestNacl(
'syscall_return_sandboxing.out',
- command=[env.File('syscall_return_sandboxing.nexe')])
+ syscall_return_sandboxing_nexe)
env.AddNodeToTestSuite(node,
['small_tests', 'sel_ldr_tests'],
'run_syscall_return_sandboxing_test')
-env.ComponentProgram('thread_create_bad_address.nexe',
- env.RawSyscallObjects(['thread_create_bad_address.c']))
+thread_create_bad_address_nexe = env.ComponentProgram(
+ 'thread_create_bad_address',
+ env.RawSyscallObjects(['thread_create_bad_address.c']))
node = env.CommandSelLdrTestNacl(
'thread_create_bad_address.out',
- command=[env.File('thread_create_bad_address.nexe')])
+ thread_create_bad_address_nexe)
env.AddNodeToTestSuite(node, ['small_tests'],
'run_thread_create_bad_address_test')
« no previous file with comments | « tests/sysbasic/nacl.scons ('k') | tests/syscalls/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698