mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:44:43 +01:00
std.heap.DebugAllocator: disable already flaky test
tracked by #22731
counterpart to ef1ddbe2f0
This commit is contained in:
parent
de25a6ffee
commit
e3b7cad81e
1 changed files with 4 additions and 1 deletions
|
|
@ -1350,7 +1350,10 @@ test "non-page-allocator backing allocator" {
|
|||
}
|
||||
|
||||
test "realloc large object to larger alignment" {
|
||||
if (!builtin.link_libc and builtin.os.tag == .wasi) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22731
|
||||
if (builtin.os.tag == .wasi) {
|
||||
// https://github.com/ziglang/zig/issues/22731
|
||||
return error.SkipZigTest;
|
||||
}
|
||||
|
||||
var gpa = DebugAllocator(test_config){};
|
||||
defer std.testing.expect(gpa.deinit() == .ok) catch @panic("leak");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue