std.Io.net: disable listen on a unix socket, send bytes, receive bytes on Windows

https://github.com/ziglang/zig/issues/25983
This commit is contained in:
Alex Rønne Petersen 2025-11-19 21:51:57 +01:00
parent 4ed5bb0bac
commit 5078acf3a3
No known key found for this signature in database

View file

@ -268,6 +268,7 @@ fn testServer(server: *net.Server) anyerror!void {
test "listen on a unix socket, send bytes, receive bytes" {
if (builtin.single_threaded) return error.SkipZigTest;
if (!net.has_unix_sockets) return error.SkipZigTest;
if (builtin.os.tag == .windows) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/25983
const io = testing.io;