diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-04-28 20:01:46 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-04-29 13:02:33 -0700 |
commit | 3bc476a569e8d657bae8f7d3c794a5406cef6755 (patch) | |
tree | f9baf80a115f24d9b309f7739a4a4b310328b3f2 | |
parent | d48ab255de54bb387e55ed0268dbbec1f43daafc (diff) |
disable test_dlmalloc_partial_2 with CHECK_HEAP_ALIGN, like SAFE_HEAP
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index f883db8d..cdf9e08e 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -7404,7 +7404,7 @@ operator new(size_t size) self.do_run(src, 'new 4!\n*1,0*') def test_dlmalloc_partial_2(self): - if self.emcc_args is None or 'SAFE_HEAP' in str(self.emcc_args): return self.skip('only emcc will link in dlmalloc, and we do unsafe stuff') + if self.emcc_args is None or 'SAFE_HEAP' in str(self.emcc_args) or 'CHECK_HEAP_ALIGN' in str(self.emcc_args): return self.skip('only emcc will link in dlmalloc, and we do unsafe stuff') # present part of the symbols of dlmalloc, not all. malloc is harder to link than new which is weak. src = r''' #include <stdio.h> |