diff options
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index 6832d41e..1f40ed70 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -2131,6 +2131,8 @@ Exiting setjmp function, level: 0 ''') def test_longjmp4(self): + if self.emcc_args and '-O' in str(self.emcc_args): return self.skip('this breaks with LLVM optimizations, even natively - is this undefined behavior? see issue 747') + src = r''' #include <setjmp.h> #include <stdio.h> |