aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-12-18 18:10:30 -0800
committerAlon Zakai <alonzakai@gmail.com>2013-12-18 18:10:30 -0800
commit879206cdd5cd1896674e279112c3d3271c439d21 (patch)
tree962c293966a3a2ef91a3d38a807d62aaa1077323
parent83cae72a00507bce2a7c6cb12a2f1436b061d844 (diff)
fix asm1.test_cube2hash for fastcomp
-rw-r--r--tests/test_core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_core.py b/tests/test_core.py
index 5c7bc18f..e2db18a0 100644
--- a/tests/test_core.py
+++ b/tests/test_core.py
@@ -525,7 +525,7 @@ class T(RunnerCore): # Short name, to make it more fun to use manually on the co
os.environ['EMSCRIPT_MAX_CHUNK_SIZE'] = old_chunk_size
assert 'asm1' in test_modes
- if self.run_name == 'asm1':
+ if self.run_name == 'asm1' and not os.environ.get('EMCC_FAST_COMPILER'):
assert Settings.RELOOP
generated = open('src.cpp.o.js').read()
main = generated[generated.find('function _main'):]