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

Unified Diff: src/trusted/service_runtime/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
Index: src/trusted/service_runtime/nacl.scons
===================================================================
--- src/trusted/service_runtime/nacl.scons (revision 5756)
+++ src/trusted/service_runtime/nacl.scons (working copy)
@@ -158,12 +158,12 @@
base_name = 'nacl_text_' + variant + '_pad' + name_modifier + '_test'
obj = asm_env.ComponentObject(base_name + '.o', nacl_text_pad_asm)
- nexe_name = base_name + '.nexe'
+ nexe_name = base_name
Nick Bray 2011/06/23 18:32:24 Inline.
pdox 2011/06/23 20:42:58 Done.
- asm_env.ComponentProgram(nexe_name, [obj])
+ nexe = asm_env.ComponentProgram(nexe_name, [obj])
node = env.CommandSelLdrTestNacl(base_name + '.out',
- command=[env.File(nexe_name)])
+ nexe)
env.AddNodeToTestSuite(node,
['small_tests', 'sel_ldr_sled_tests'],
'run_' + base_name)

Powered by Google App Engine
This is Rietveld 408576698