zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit bbacf42837938ddbb88efae8cae99aec24debd0f (tree)
parent 31a6e83a7cf178156d9408a9e7061853ea2410ec
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Mon,  5 Jan 2026 12:47:43 +0100

std.Io.test: disable flaky Group.concurrent test on linux w/o libc

https://codeberg.org/ziglang/zig/issues/30096

Diffstat:
Mlib/std/Io/test.zig | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/lib/std/Io/test.zig b/lib/std/Io/test.zig @@ -254,6 +254,8 @@ test "Group.cancel" { } test "Group.concurrent" { + if (builtin.os.tag == .linux and !builtin.link_libc) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30096 + const io = testing.io; var group: Io.Group = .init;