Chromium Code Reviews| 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 |