commit ccf8e223f4ba8ae2b0ae1128274ee963a97c7484 (tree)
parent cb7d2b056318447e3fbb2e8c4163d03480688278
Author: Jacob Young <jacobly0@users.noreply.github.com>
Date: Sun, 22 Mar 2026 09:35:51 -0400
std.Io.net: disable unix socket test due to presumed windows kernel bug
Tracked by #31499
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/lib/std/Io/net/test.zig b/lib/std/Io/net/test.zig
@@ -236,6 +236,11 @@ test "listen on an in use port" {
}
test "listen on a unix socket, send bytes, receive bytes" {
+ if (builtin.os.tag == .windows) {
+ // https://codeberg.org/ziglang/zig/issues/31499
+ return error.SkipZigTest;
+ }
+
const io = testing.io;
const gpa = testing.allocator;