diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-04-12 15:44:56 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-04-12 15:44:56 -0700 |
commit | aeb63def9502e56437b74e222739c36af0b9c72f (patch) | |
tree | ccdc99b7f00395588b6042ead1f76ee7baf6c032 /tests | |
parent | 3a4bb38d59ae7008faad2a304534bb29b213e8d8 (diff) |
enable two more exceptions tests in asm.js
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runner.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/runner.py b/tests/runner.py index 3c8f2d16..def4bfc9 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -2575,7 +2575,6 @@ Exception execution path of first function! 1 self.do_run(src, 'Throw...Construct...Catched...Destruct...Throw...Construct...Copy...Catched...Destruct...Destruct...') def test_white_list_exception(self): - if Settings.ASM_JS: return self.skip('no exceptions support in asm') Settings.DISABLE_EXCEPTION_CATCHING = 2 Settings.EXCEPTION_CATCHING_WHITELIST = ["__Z12somefunctionv"] Settings.INLINING_LIMIT = 50 # otherwise it is inlined and not identified @@ -2607,9 +2606,7 @@ Exception execution path of first function! 1 Settings.DISABLE_EXCEPTION_CATCHING = 0 Settings.EXCEPTION_CATCHING_WHITELIST = [] - def test_uncaught_exception(self): - if Settings.ASM_JS: return self.skip('no exceptions support in asm') if self.emcc_args is None: return self.skip('no libcxx inclusion without emcc') Settings.DISABLE_EXCEPTION_CATCHING = 0 |