authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-03-12 15:41:55-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-03-12 15:42:13-07:00
log314264ee7d76c365a80105e13db40819ecd33329
tree4b9b16c1dcea8efaffa2b29c51dc76eff0a5e753
parent9634e983578f2c8a948228d14135b4640e3a8587

std: windows isn't passing cancel accept yet

tracked by #30865

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

lib/std/Io/net/test.zig+5
...@@ -340,6 +340,11 @@ test "decompress compressed DNS name" {...@@ -340,6 +340,11 @@ test "decompress compressed DNS name" {
340}340}
341341
342test "cancel accept" {342test "cancel accept" {
343 if (builtin.os.tag == .windows) {
344 // https://codeberg.org/ziglang/zig/issues/30865
345 return error.SkipZigTest;
346 }
347
343 const io = testing.io;348 const io = testing.io;
344 const localhost: net.IpAddress = .{ .ip4 = .loopback(0) };349 const localhost: net.IpAddress = .{ .ip4 = .loopback(0) };
345350