aboutsummaryrefslogtreecommitdiff
path: root/tests/test_sanity.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/test_sanity.py
parent09a848a0771550c95df8b3566efdfde5e80803a9 (diff)
turn fastcomp on by default, disabling can be done with EMCC_FAST_COMPILER=0 in the env
Diffstat (limited to 'tests/test_sanity.py')
-rw-r--r--tests/test_sanity.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_sanity.py b/tests/test_sanity.py
index 894f2192..4e01add8 100644
--- a/tests/test_sanity.py
+++ b/tests/test_sanity.py
@@ -196,7 +196,7 @@ class sanity(RunnerCore):
del os.environ['EM_IGNORE_SANITY']
def test_llvm_fastcomp(self):
- if os.environ.get('EMCC_FAST_COMPILER') != '1': return self.skip('not using fastcomp')
+ if os.environ.get('EMCC_FAST_COMPILER') == '0': return self.skip('not using fastcomp')
WARNING = 'fastcomp in use, but LLVM has not been built with the JavaScript backend as a target'