| ... | @@ -374,6 +374,11 @@ test "tcp/client: 1ms read timeout" { | ... | @@ -374,6 +374,11 @@ test "tcp/client: 1ms read timeout" { |
| 374 | test "tcp/client: read and write multiple vectors" { | 374 | test "tcp/client: read and write multiple vectors" { |
| 375 | if (native_os.tag == .wasi) return error.SkipZigTest; | 375 | if (native_os.tag == .wasi) return error.SkipZigTest; |
| 376 | | 376 | |
| | 377 | if (builtin.os.tag == .windows) { |
| | 378 | // https://github.com/ziglang/zig/issues/13893 |
| | 379 | return error.SkipZigTest; |
| | 380 | } |
| | 381 | |
| 377 | const listener = try tcp.Listener.init(.ip, .{ .close_on_exec = true }); | 382 | const listener = try tcp.Listener.init(.ip, .{ .close_on_exec = true }); |
| 378 | defer listener.deinit(); | 383 | defer listener.deinit(); |
| 379 | | 384 | |
| ... | @@ -426,6 +431,11 @@ test "tcp/listener: bind to unspecified ipv4 address" { | ... | @@ -426,6 +431,11 @@ test "tcp/listener: bind to unspecified ipv4 address" { |
| 426 | test "tcp/listener: bind to unspecified ipv6 address" { | 431 | test "tcp/listener: bind to unspecified ipv6 address" { |
| 427 | if (native_os.tag == .wasi) return error.SkipZigTest; | 432 | if (native_os.tag == .wasi) return error.SkipZigTest; |
| 428 | | 433 | |
| | 434 | if (builtin.os.tag == .windows) { |
| | 435 | // https://github.com/ziglang/zig/issues/13893 |
| | 436 | return error.SkipZigTest; |
| | 437 | } |
| | 438 | |
| 429 | const listener = try tcp.Listener.init(.ipv6, .{ .close_on_exec = true }); | 439 | const listener = try tcp.Listener.init(.ipv6, .{ .close_on_exec = true }); |
| 430 | defer listener.deinit(); | 440 | defer listener.deinit(); |
| 431 | | 441 | |