authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-01-05 12:47:43+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-01-05 12:52:18+01:00
logbbacf42837938ddbb88efae8cae99aec24debd0f
tree9e18169946632e5cb0ab9ce364b76ec1aa2724d5
parent31a6e83a7cf178156d9408a9e7061853ea2410ec
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

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

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

1 files changed, 2 insertions(+), 0 deletions(-)

lib/std/Io/test.zig+2
......@@ -254,6 +254,8 @@ test "Group.cancel" {
254254}
255255
256256test "Group.concurrent" {
257 if (builtin.os.tag == .linux and !builtin.link_libc) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30096
258
257259 const io = testing.io;
258260
259261 var group: Io.Group = .init;