| author | |
| committer | |
| log | 075ec5555264b759035e7d607faf03704075af23 |
| tree | 82ea66f7c40db3423e344bcbbf9295e8ee10fea6 |
| parent | 6294e65eebb775d6c5f2607f3379b3c222bfb5a0 |
tracked by #214571 files changed, 5 insertions(+), 0 deletions(-)
lib/std/http/test.zig+5| ... | ... | @@ -230,6 +230,11 @@ test "echo content server" { |
| 230 | 230 | } |
| 231 | 231 | |
| 232 | 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 | 238 | // In this case, the response is expected to stream until the connection is |
| 234 | 239 | // closed, indicating the end of the body. |
| 235 | 240 | const test_server = try createTestServer(struct { |