diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-12-09 12:21:27 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-12-09 12:21:27 -0800 |
commit | b8bf06bf01efccded4b0f0a326fb4494b11d7e10 (patch) | |
tree | ff6fe4691c3161994926a7e006492736e3274431 | |
parent | 22dd25322a59b779389a0ff702e021dc2b328dbf (diff) |
disable new longjmp tests in asm
-rwxr-xr-x | tests/runner.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index a231cb5c..1e9814f9 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -2088,6 +2088,8 @@ Exiting stack_manipulate_func, level: 0 ''') def test_longjmp3(self): + if Settings.ASM_JS: return self.skip('asm does not support longjmp') + src = r''' #include <setjmp.h> #include <stdio.h> @@ -2140,6 +2142,8 @@ Exiting setjmp function, level: 0 ''') def test_longjmp4(self): + if Settings.ASM_JS: return self.skip('asm does not support longjmp') + src = r''' #include <setjmp.h> #include <stdio.h> |