disable failing windows std lib tests

See tracking issues #13892 and #13893
This commit is contained in:
Andrew Kelley
2022-12-11 12:47:36 -07:00
parent 59bd296328
commit e3ef01c6c7
2 changed files with 15 additions and 0 deletions

View File

@@ -848,6 +848,11 @@ test "writeBlockHuff" {
// Tests huffman encoding against reference files to detect possible regressions.
// If encoding/bit allocation changes you can regenerate these files
if (builtin.os.tag == .windows) {
// https://github.com/ziglang/zig/issues/13892
return error.SkipZigTest;
}
try testBlockHuff(
"huffman-null-max.input",
"huffman-null-max.golden",

View File

@@ -374,6 +374,11 @@ test "tcp/client: 1ms read timeout" {
test "tcp/client: read and write multiple vectors" {
if (native_os.tag == .wasi) return error.SkipZigTest;
if (builtin.os.tag == .windows) {
// https://github.com/ziglang/zig/issues/13893
return error.SkipZigTest;
}
const listener = try tcp.Listener.init(.ip, .{ .close_on_exec = true });
defer listener.deinit();
@@ -426,6 +431,11 @@ test "tcp/listener: bind to unspecified ipv4 address" {
test "tcp/listener: bind to unspecified ipv6 address" {
if (native_os.tag == .wasi) return error.SkipZigTest;
if (builtin.os.tag == .windows) {
// https://github.com/ziglang/zig/issues/13893
return error.SkipZigTest;
}
const listener = try tcp.Listener.init(.ipv6, .{ .close_on_exec = true });
defer listener.deinit();