diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-01-12 19:58:34 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-01-12 19:58:34 -0800 |
commit | 238838982fc6a157ba95892c6bbd87252aba9d97 (patch) | |
tree | 6e960552dcff28ce97ce674ce45a3cdf95a315c3 /tests | |
parent | db386b079146ce333145e7470d82bb843591cf2a (diff) |
enable test_typed_exceptions in fastcomp
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_core.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index e617caad..3020c50c 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -1336,8 +1336,6 @@ class T(RunnerCore): # Short name, to make it more fun to use manually on the co self.do_run(src, 'success') def test_typed_exceptions(self): - if os.environ.get('EMCC_FAST_COMPILER') == '1': return self.skip('todo in fastcomp') - Settings.DISABLE_EXCEPTION_CATCHING = 0 Settings.SAFE_HEAP = 0 # Throwing null will cause an ignorable null pointer access. src = open(path_from_root('tests', 'exceptions', 'typed.cpp'), 'r').read() |