commit a7b686ac5eb10cfc2d37f50908a9c4b527b97d60 (tree)
parent d6402955d962b1563378b44a82a9644cee344ff3
Author: Andrew Kelley <andrew@ziglang.org>
Date: Fri, 13 Mar 2026 18:08:07 -0700
std: disable flaky test on Windows
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
@@ -234,6 +234,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;