diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-04-12 15:52:13 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-04-12 15:52:13 -0700 |
commit | 94aa7b917086053fbf4f6125daad8bb1bd889190 (patch) | |
tree | ea0d52a00a5a3e38f9f2dc58cefa26406c6114f8 /tests | |
parent | aeb63def9502e56437b74e222739c36af0b9c72f (diff) |
coerce arguments to cxa_find_matching_catch; enable remaining asm.js exceptions tests
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index def4bfc9..890d42e7 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -2646,7 +2646,6 @@ Exception execution path of first function! 1 self.do_run(src, 'success') def test_typed_exceptions(self): - if Settings.ASM_JS: return self.skip('no exceptions support in asm') 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() @@ -2654,7 +2653,6 @@ Exception execution path of first function! 1 self.do_run(src, expected) def test_multiexception(self): - if Settings.ASM_JS: return self.skip('no exceptions support in asm') Settings.DISABLE_EXCEPTION_CATCHING = 0 src = r''' #include <stdio.h> |