| ... | @@ -230,6 +230,11 @@ test "echo content server" { | ... | @@ -230,6 +230,11 @@ test "echo content server" { |
| 230 | } | 230 | } |
| 231 | | 231 | |
| 232 | test "Server.Request.respondStreaming non-chunked, unknown content-length" { | 232 | test "Server.Request.respondStreaming non-chunked, unknown content-length" { |
| | 233 | if (builtin.os.tag == .windows) { |
| | 234 | // https://github.com/ziglang/zig/issues/21457 |
| | 235 | return error.SkipZigTest; |
| | 236 | } |
| | 237 | |
| 233 | // In this case, the response is expected to stream until the connection is | 238 | // In this case, the response is expected to stream until the connection is |
| 234 | // closed, indicating the end of the body. | 239 | // closed, indicating the end of the body. |
| 235 | const test_server = try createTestServer(struct { | 240 | const test_server = try createTestServer(struct { |