diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-12-05 11:33:55 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-12-07 14:23:23 -0800 |
commit | edbcebd40576ebe84620d11f69e1683b2a12a82c (patch) | |
tree | 8de48cdd9a49d02af4799949f23cda3c125dab94 /tests | |
parent | 56141d4055bb81d8446baeb41f6458eab35ef8db (diff) |
ignore longjmp tests in asm
Diffstat (limited to 'tests')
-rw-r--r-- | tests/cases/longjmp_tiny_noasm.ll (renamed from tests/cases/longjmp_tiny.ll) | 0 | ||||
-rw-r--r-- | tests/cases/longjmp_tiny_noasm.txt (renamed from tests/cases/longjmp_tiny.txt) | 0 | ||||
-rwxr-xr-x | tests/runner.py | 4 |
3 files changed, 4 insertions, 0 deletions
diff --git a/tests/cases/longjmp_tiny.ll b/tests/cases/longjmp_tiny_noasm.ll index 0045847c..0045847c 100644 --- a/tests/cases/longjmp_tiny.ll +++ b/tests/cases/longjmp_tiny_noasm.ll diff --git a/tests/cases/longjmp_tiny.txt b/tests/cases/longjmp_tiny_noasm.txt index 8a0aa386..8a0aa386 100644 --- a/tests/cases/longjmp_tiny.txt +++ b/tests/cases/longjmp_tiny_noasm.txt diff --git a/tests/runner.py b/tests/runner.py index 729ac5b4..e22e9a0a 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -2003,6 +2003,8 @@ c5,de,15,8a self.do_run(src, 'Assertion failed: 1 == false') def test_longjmp(self): + if Settings.ASM_JS: return self.skip('asm does not support longjmp') + src = r''' #include <stdio.h> #include <setjmp.h> @@ -2038,6 +2040,8 @@ c5,de,15,8a self.do_run(src, 'second\nmain: 0\n') def test_longjmp2(self): + if Settings.ASM_JS: return self.skip('asm does not support longjmp') + src = r''' #include <setjmp.h> #include <stdio.h> |