mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
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:
parent
4ed5bb0bac
commit
5078acf3a3
@ -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;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user