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

Unified Diff: tests/redir/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/pyauto_nacl/nacl.scons ('k') | tests/rodata_not_writable/nacl.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/redir/nacl.scons
===================================================================
--- tests/redir/nacl.scons (revision 5777)
+++ tests/redir/nacl.scons (working copy)
@@ -9,7 +9,7 @@
Import('env')
-env.ComponentProgram('redir_test.nexe', 'redir_test.c')
+redir_test_nexe = env.ComponentProgram('redir_test', 'redir_test.c')
# windows builds swallow stdout and stderr, so we cannot check
# against the golden files when stdout and stderr are not redirected
@@ -17,7 +17,7 @@
if not env.Bit('host_windows'):
node = env.CommandSelLdrTestNacl(
'redir_test_basic.out',
- command=[env.File('redir_test.nexe')],
+ redir_test_nexe,
stdout_golden=env.File('redir_test.stdout'),
stderr_golden=env.File('redir_test.stderr'),
filter_regex="'^REALOUTPUT'",
@@ -48,7 +48,7 @@
node = env.CommandSelLdrTestNacl(
'redir_test.out',
- command=[env.File('redir_test.nexe')],
+ redir_test_nexe,
filter_regex="'^REALOUTPUT'",
osenv=['NACL_EXE_STDOUT=%s' % outfile,
'NACL_EXE_STDERR=%s' % errfile])
« no previous file with comments | « tests/pyauto_nacl/nacl.scons ('k') | tests/rodata_not_writable/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698