aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2014-02-21 10:10:49 -0800
committerAlon Zakai <alonzakai@gmail.com>2014-02-21 10:10:49 -0800
commit025dea98e497bc2c3e9167850c4ecae9a65785cf (patch)
tree9505cb685b74966d9378d151fff1b092cd6398b6 /tests/runner.py
parent09a848a0771550c95df8b3566efdfde5e80803a9 (diff)
turn fastcomp on by default, disabling can be done with EMCC_FAST_COMPILER=0 in the env
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-xtests/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 501299c7..989d4ae6 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -36,7 +36,7 @@ except:
# Core test runner class, shared between normal tests and benchmarks
checked_sanity = False
-if os.environ.get('EMCC_FAST_COMPILER') == '1':
+if os.environ.get('EMCC_FAST_COMPILER') != '0':
test_modes = ['default', 'asm1', 'asm2', 'asm3', 'asm2f', 'asm2g']
else:
test_modes = ['default', 'o1', 'o2', 'asm1', 'asm2', 'asm3', 'asm2f', 'asm2g', 'asm2x86', 's_0_0', 's_0_1']