authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-12-11 12:47:36-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-12-11 12:48:18-07:00
loge3ef01c6c7b2e0734c3a21e7c3a69f921f195968
treea6fc23aeedd123ec186c32b64958ac3c5e4d2d97
parent59bd296328ec290c5e00948003d98e83bf54a047

disable failing windows std lib tests

See tracking issues #13892 and #13893

2 files changed, 15 insertions(+), 0 deletions(-)

lib/std/compress/deflate/huffman_bit_writer.zig+5
......@@ -848,6 +848,11 @@ test "writeBlockHuff" {
848848 // Tests huffman encoding against reference files to detect possible regressions.
849849 // If encoding/bit allocation changes you can regenerate these files
850850
851 if (builtin.os.tag == .windows) {
852 // https://github.com/ziglang/zig/issues/13892
853 return error.SkipZigTest;
854 }
855
851856 try testBlockHuff(
852857 "huffman-null-max.input",
853858 "huffman-null-max.golden",
lib/std/x/net/tcp.zig+10
......@@ -374,6 +374,11 @@ test "tcp/client: 1ms read timeout" {
374374test "tcp/client: read and write multiple vectors" {
375375 if (native_os.tag == .wasi) return error.SkipZigTest;
376376
377 if (builtin.os.tag == .windows) {
378 // https://github.com/ziglang/zig/issues/13893
379 return error.SkipZigTest;
380 }
381
377382 const listener = try tcp.Listener.init(.ip, .{ .close_on_exec = true });
378383 defer listener.deinit();
379384
......@@ -426,6 +431,11 @@ test "tcp/listener: bind to unspecified ipv4 address" {
426431test "tcp/listener: bind to unspecified ipv6 address" {
427432 if (native_os.tag == .wasi) return error.SkipZigTest;
428433
434 if (builtin.os.tag == .windows) {
435 // https://github.com/ziglang/zig/issues/13893
436 return error.SkipZigTest;
437 }
438
429439 const listener = try tcp.Listener.init(.ipv6, .{ .close_on_exec = true });
430440 defer listener.deinit();
431441