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

Unified Diff: tests/nanosleep/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/nameservice/nacl.scons ('k') | tests/native_worker/nacl.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/nanosleep/nacl.scons
===================================================================
--- tests/nanosleep/nacl.scons (revision 5777)
+++ tests/nanosleep/nacl.scons (working copy)
@@ -19,15 +19,16 @@
if 'TRUSTED_ENV' in env and env['TRUSTED_ENV'].Bit('windows'):
test_is_broken_on_this_os=True
-env.ComponentProgram('nanosleep_test.nexe',
- 'nanosleep_test.c',
- EXTRA_LIBS=['pthread'])
+nexe = env.ComponentProgram('nanosleep_test',
+ 'nanosleep_test.c',
+ EXTRA_LIBS=['pthread'])
# This is a timing test, so we only run on real hardware
is_on_vm = env.Bit('running_on_vm')
node = env.CommandSelLdrTestNacl(
'nanosleep_test.out',
- command=[env.File('nanosleep_test.nexe')] + slop_args)
+ nexe,
+ args=slop_args)
env.AddNodeToTestSuite(node, ['small_tests'], 'run_nanosleep_test',
is_broken=is_on_vm or test_is_broken_on_this_os)
« no previous file with comments | « tests/nameservice/nacl.scons ('k') | tests/native_worker/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698