authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-12-26 16:10:26-08:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-12-26 19:58:56-08:00
logfeeed922e1a7d89b99572d5577c814f9e6293b9b
tree44de133c4d62f3b6629a9f9da862445a7842217d
parent58f0c8cfed1c8dd2fb29cf4a1807e6e0d239c006

std.Io.net: disable flaky test on mipsel


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

lib/std/Io/net/test.zig+1
...@@ -271,6 +271,7 @@ test "listen on a unix socket, send bytes, receive bytes" {...@@ -271,6 +271,7 @@ test "listen on a unix socket, send bytes, receive bytes" {
271 if (builtin.single_threaded) return error.SkipZigTest;271 if (builtin.single_threaded) return error.SkipZigTest;
272 if (!net.has_unix_sockets) return error.SkipZigTest;272 if (!net.has_unix_sockets) return error.SkipZigTest;
273 if (builtin.os.tag == .windows) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/25983273 if (builtin.os.tag == .windows) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/25983
274 if (builtin.cpu.arch == .mipsel) return error.SkipZigTest; // TODO
274275
275 const io = testing.io;276 const io = testing.io;
276277