authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-03-13 18:08:07-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-03-14 06:06:03+01:00
loga7b686ac5eb10cfc2d37f50908a9c4b527b97d60
tree92aa897b422d28d98575d1360c87a0e7d65ceceb
parentd6402955d962b1563378b44a82a9644cee344ff3

std: disable flaky test on Windows

tracked by #31499

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

lib/std/Io/net/test.zig+5
......@@ -234,6 +234,11 @@ test "listen on an in use port" {
234234}
235235
236236test "listen on a unix socket, send bytes, receive bytes" {
237 if (builtin.os.tag == .windows) {
238 // https://codeberg.org/ziglang/zig/issues/31499
239 return error.SkipZigTest;
240 }
241
237242 const io = testing.io;
238243 const gpa = testing.allocator;
239244