mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +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
1 changed files with 1 additions and 0 deletions
|
|
@ -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…
Add table
Reference in a new issue