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

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
« no previous file with comments | « tests/imc_sockets/nacl.scons ('k') | tests/libc_free_hello_world/nacl.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/inbrowser_test_runner/nacl.scons
===================================================================
--- tests/inbrowser_test_runner/nacl.scons (revision 5777)
+++ tests/inbrowser_test_runner/nacl.scons (working copy)
@@ -14,19 +14,19 @@
# was disabled for ARM/PNaCl. TODO(mseaborn): Re-enable both.
Return()
-arch_suffix = '_%s.nexe' % 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_modify_test.nmf'),
- env.File('$STAGING_DIR/dynamic_modify_test' + 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/nacltest.js'),
+ env.File('$STAGING_DIR/dynamic_load_test.nmf'),
+ env.File('$STAGING_DIR/dynamic_load_test_${TARGET_FULLARCH}${PROGSUFFIX}'),
+ env.File('$STAGING_DIR/dynamic_modify_test.nmf'),
+ env.File('$STAGING_DIR/dynamic_modify_test_${TARGET_FULLARCH}${PROGSUFFIX}'),
+ env.File('$STAGING_DIR/imc_shm_mmap_test.nmf'),
+ env.File('$STAGING_DIR/imc_shm_mmap_test_${TARGET_FULLARCH}${PROGSUFFIX}'),
+]
+
# These are not true dependencies: They are not needed for
# test_runner.html to be replicated to "staging", but they are needed
# for test_runner.html to work when run.
« no previous file with comments | « tests/imc_sockets/nacl.scons ('k') | tests/libc_free_hello_world/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698