aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-12-09 12:21:27 -0800
committerAlon Zakai <alonzakai@gmail.com>2012-12-09 12:21:27 -0800
commitb8bf06bf01efccded4b0f0a326fb4494b11d7e10 (patch)
treeff6fe4691c3161994926a7e006492736e3274431
parent22dd25322a59b779389a0ff702e021dc2b328dbf (diff)
disable new longjmp tests in asm
-rwxr-xr-xtests/runner.py4
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>