commit 3da6e671997442df44df3257e882819eae649c8d (tree)
parent 7ea38425498e6be084278dcfd327b705940f15ed
Author: Alex Rønne Petersen <alex@alexrp.com>
Date: Tue, 13 Jan 2026 21:27:21 +0100
std.Io.test: disable `Group.concurrent` on linux w/o libc
https://codeberg.org/ziglang/zig/issues/30096
Diffstat:
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;