From bbacf42837938ddbb88efae8cae99aec24debd0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Mon, 5 Jan 2026 12:47:43 +0100 Subject: [PATCH] std.Io.test: disable flaky Group.concurrent test on linux w/o libc https://codeberg.org/ziglang/zig/issues/30096 --- lib/std/Io/test.zig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/std/Io/test.zig b/lib/std/Io/test.zig index a467ee1a93992a32c460198e9de539fb1366df28..6cc323a6f83fe20ba35ea3b3b76d38a554ec271c 100644 --- 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; -- 2.54.0