aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-04-10 08:45:34 -0700
committerAlon Zakai <alonzakai@gmail.com>2012-04-10 08:45:34 -0700
commit33db680552a2811e92552d9c225aedb68f4b13d0 (patch)
tree5af3f92360abb9f19685b9a169b29ca250d87ab1
parent86097bafbe336131ba9cf2d8d8d2fd1a8774e570 (diff)
fix sanity.test_emcc_caching
-rwxr-xr-xtests/runner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 3baf91fd..40f721d2 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -7523,8 +7523,8 @@ elif 'sanity' in str(sys.argv):
assert not os.path.exists(EMCC_CACHE)
try_delete('a.out.js')
- basebc_name = os.path.join(EMSCRIPTEN_TEMP_DIR, 'emcc-0-basebc.bc')
- dcebc_name = os.path.join(EMSCRIPTEN_TEMP_DIR, 'emcc-1-dce.bc')
+ basebc_name = os.path.join(TEMP_DIR, 'emscripten_temp', 'emcc-0-basebc.bc')
+ dcebc_name = os.path.join(TEMP_DIR, 'emscripten_temp', 'emcc-1-dce.bc')
# Building a file that *does* need dlmalloc *should* trigger cache generation, but only the first time
for filename, libname in [('hello_malloc.cpp', 'dlmalloc'), ('hello_libcxx.cpp', 'libcxx')]: