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

Unified Diff: tests/inbrowser_test_runner/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: tests/inbrowser_test_runner/nacl.scons
===================================================================
--- tests/inbrowser_test_runner/nacl.scons (revision 5756)
+++ tests/inbrowser_test_runner/nacl.scons (working copy)
@@ -14,18 +14,18 @@
# was disabled for ARM/PNaCl. TODO(mseaborn): Re-enable both.
Return()
-arch_suffix = '_%s.nexe' % env.get('TARGET_FULLARCH')
+arch_suffix = '_%s' % env.get('TARGET_FULLARCH')
dest_copy = env.Replicate('$STAGING_DIR', 'test_runner.html')
env.Replicate('$STAGING_DIR',
'${SCONSTRUCT_DIR}/tools/browser_tester/browserdata/nacltest.js')
test_files = [
env.File('$STAGING_DIR/nacltest.js'),
env.File('$STAGING_DIR/dynamic_load_test.nmf'),
- env.File('$STAGING_DIR/dynamic_load_test' + arch_suffix),
+ env.File('$STAGING_DIR/dynamic_load_test%s${PROGSUFFIX}' % arch_suffix),
Nick Bray 2011/06/23 18:32:24 Interpolate both the same way?
pdox 2011/06/23 20:42:58 Done.
env.File('$STAGING_DIR/dynamic_modify_test.nmf'),
- env.File('$STAGING_DIR/dynamic_modify_test' + arch_suffix),
+ env.File('$STAGING_DIR/dynamic_modify_test%s${PROGSUFFIX}' % arch_suffix),
env.File('$STAGING_DIR/imc_shm_mmap_test.nmf'),
- env.File('$STAGING_DIR/imc_shm_mmap_test' + arch_suffix),
+ env.File('$STAGING_DIR/imc_shm_mmap_test%s${PROGSUFFIX}' % arch_suffix),
]
# These are not true dependencies: They are not needed for
# test_runner.html to be replicated to "staging", but they are needed

Powered by Google App Engine
This is Rietveld 408576698