diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-01-20 15:47:24 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-01-20 15:47:24 -0800 |
commit | 9e6dedaa2325c5e4fb0ac41fa8902123ecd91647 (patch) | |
tree | 224105d0c8d80a5e0cc0a4f3ac4804f85afd4a5b /tests | |
parent | 12cd36c11725f30adc5a198ab8dc96da760bfd84 (diff) |
enable test_longjmp_stacked in fastcomp
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_core.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index 8694961d..38eb0a27 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -1154,14 +1154,11 @@ class T(RunnerCore): # Short name, to make it more fun to use manually on the co self.do_run_from_file(src, output) def test_longjmp_stacked(self): - if os.environ.get('EMCC_FAST_COMPILER') == '1': return self.skip('todo in fastcomp') - + if os.environ.get('EMCC_FAST_COMPILER') == '1': Settings.DISABLE_EXCEPTION_CATCHING = 1 test_path = path_from_root('tests', 'core', 'test_longjmp_stacked') src, output = (test_path + s for s in ('.in', '.out')) - self.do_run_from_file(src, output) - def test_longjmp_exc(self): if os.environ.get('EMCC_FAST_COMPILER') == '1': return self.skip('todo in fastcomp') |