diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-02-21 12:01:24 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-02-21 12:01:24 -0800 |
commit | 306fa23df2d683a4c6a95c603bd57b440139c092 (patch) | |
tree | ca5f134d97ad226b0e1ca65d05b2cfef3d7170ea | |
parent | 91745dd0c857bfe52100ea2876325af85fb7b016 (diff) |
assume fastcomp in fastcomp sanity test
-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 34f98fde..123c25a2 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') == '0': return self.skip('not using fastcomp') + assert os.environ.get('EMCC_FAST_COMPILER') != '0', 'must be using fastcomp to test fastcomp' WARNING = 'fastcomp in use, but LLVM has not been built with the JavaScript backend as a target' |