diff options
Diffstat (limited to 'tests/test_sanity.py')
-rw-r--r-- | tests/test_sanity.py | 2 |
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' |