diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/cases/longjmp_tiny.ll (renamed from tests/cases/longjmp_tiny_noasm.ll) | 0 | ||||
-rw-r--r-- | tests/cases/longjmp_tiny.txt (renamed from tests/cases/longjmp_tiny_noasm.txt) | 0 | ||||
-rw-r--r-- | tests/cases/longjmp_tiny_invoke.ll (renamed from tests/cases/longjmp_tiny_noasm_invoke.ll) | 0 | ||||
-rw-r--r-- | tests/cases/longjmp_tiny_invoke.txt (renamed from tests/cases/longjmp_tiny_noasm_invoke.txt) | 0 | ||||
-rw-r--r-- | tests/cases/longjmp_tiny_phi.ll (renamed from tests/cases/longjmp_tiny_phi_noasm.ll) | 0 | ||||
-rw-r--r-- | tests/cases/longjmp_tiny_phi.txt (renamed from tests/cases/longjmp_tiny_phi_noasm.txt) | 0 | ||||
-rw-r--r-- | tests/cases/longjmp_tiny_phi2.ll (renamed from tests/cases/longjmp_tiny_phi2_noasm.ll) | 0 | ||||
-rw-r--r-- | tests/cases/longjmp_tiny_phi2.txt (renamed from tests/cases/longjmp_tiny_phi2_noasm.txt) | 0 | ||||
-rwxr-xr-x | tests/runner.py | 11 |
9 files changed, 1 insertions, 10 deletions
diff --git a/tests/cases/longjmp_tiny_noasm.ll b/tests/cases/longjmp_tiny.ll index 0045847c..0045847c 100644 --- a/tests/cases/longjmp_tiny_noasm.ll +++ b/tests/cases/longjmp_tiny.ll diff --git a/tests/cases/longjmp_tiny_noasm.txt b/tests/cases/longjmp_tiny.txt index 8a0aa386..8a0aa386 100644 --- a/tests/cases/longjmp_tiny_noasm.txt +++ b/tests/cases/longjmp_tiny.txt diff --git a/tests/cases/longjmp_tiny_noasm_invoke.ll b/tests/cases/longjmp_tiny_invoke.ll index e1a72e00..e1a72e00 100644 --- a/tests/cases/longjmp_tiny_noasm_invoke.ll +++ b/tests/cases/longjmp_tiny_invoke.ll diff --git a/tests/cases/longjmp_tiny_noasm_invoke.txt b/tests/cases/longjmp_tiny_invoke.txt index 8a0aa386..8a0aa386 100644 --- a/tests/cases/longjmp_tiny_noasm_invoke.txt +++ b/tests/cases/longjmp_tiny_invoke.txt diff --git a/tests/cases/longjmp_tiny_phi_noasm.ll b/tests/cases/longjmp_tiny_phi.ll index cced7cab..cced7cab 100644 --- a/tests/cases/longjmp_tiny_phi_noasm.ll +++ b/tests/cases/longjmp_tiny_phi.ll diff --git a/tests/cases/longjmp_tiny_phi_noasm.txt b/tests/cases/longjmp_tiny_phi.txt index 16f5a93e..16f5a93e 100644 --- a/tests/cases/longjmp_tiny_phi_noasm.txt +++ b/tests/cases/longjmp_tiny_phi.txt diff --git a/tests/cases/longjmp_tiny_phi2_noasm.ll b/tests/cases/longjmp_tiny_phi2.ll index 1d7761c3..1d7761c3 100644 --- a/tests/cases/longjmp_tiny_phi2_noasm.ll +++ b/tests/cases/longjmp_tiny_phi2.ll diff --git a/tests/cases/longjmp_tiny_phi2_noasm.txt b/tests/cases/longjmp_tiny_phi2.txt index 37e85737..37e85737 100644 --- a/tests/cases/longjmp_tiny_phi2_noasm.txt +++ b/tests/cases/longjmp_tiny_phi2.txt diff --git a/tests/runner.py b/tests/runner.py index b3d995bf..aa2e1dc1 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -2310,8 +2310,6 @@ cat |umber one top notchfi FI FO FUM WHEN WHERE WHY HOW WHO|''', ['wowie', 'too' 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> @@ -2343,8 +2341,6 @@ cat |umber one top notchfi FI FO FUM WHEN WHERE WHY HOW WHO|''', ['wowie', 'too' self.do_run(src, 'second\nmain: 1\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> @@ -2391,8 +2387,6 @@ 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> @@ -2445,8 +2439,6 @@ 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> @@ -12107,8 +12099,7 @@ elif 'benchmark' in str(sys.argv): '-o', final_filename] + shared_args + emcc_args, stdout=PIPE, stderr=self.stderr_redirect).communicate() assert os.path.exists(final_filename), 'Failed to compile file: ' + output[0] - if self.save_JS: - self.hardcode_arguments(final_filename, args) + self.hardcode_arguments(final_filename, args) # Run JS global total_times, tests_done |