diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-12-18 16:50:36 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-12-18 16:50:36 -0800 |
commit | 83cae72a00507bce2a7c6cb12a2f1436b061d844 (patch) | |
tree | 7a0ea6bde788eeb32032ad628e218e7295cdb8c0 | |
parent | 30035e6e4268c3bd54a895b42f5da337660a8097 (diff) |
fix test for fastcomp -O0
-rw-r--r-- | tests/test_core.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index 27f3f609..5c7bc18f 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -2525,6 +2525,8 @@ The current type of b is: 9 self.do_run_from_file(src, output) def test_intentional_fault(self): + if os.environ.get('EMCC_FAST_COMPILER') == '1' and self.run_name == 'default': return self.skip('todo in fastcomp in default') + # Some programs intentionally segfault themselves, we should compile that into a throw src = r''' int main () { |