diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-12-01 15:56:32 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-12-07 14:23:22 -0800 |
commit | 358ec5c1a512188b646d478e698e6d668c0400f6 (patch) | |
tree | d19430b021c937261ccef128ca96c5fdb0915091 | |
parent | c507a8cf49469b37814864ddc446feb88383dd5d (diff) |
disable safe-heap reliant tests in asm
-rwxr-xr-x | tests/runner.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index fa7be147..d8830679 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -2330,6 +2330,7 @@ Exiting stack_manipulate_func, level: 0 def test_segfault(self): if self.emcc_args is None: return self.skip('SAFE_HEAP without ta2 means we check types too, which hide segfaults') + if Settings.ASM_JS: return self.skip('asm does not support safe heap') Settings.SAFE_HEAP = 1 |