authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-09-19 18:19:59-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-09-19 18:20:22-07:00
log075ec5555264b759035e7d607faf03704075af23
tree82ea66f7c40db3423e344bcbbf9295e8ee10fea6
parent6294e65eebb775d6c5f2607f3379b3c222bfb5a0

disable failing test

tracked by #21457

1 files changed, 5 insertions(+), 0 deletions(-)

lib/std/http/test.zig+5
......@@ -230,6 +230,11 @@ test "echo content server" {
230230}
231231
232232test "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
233238 // In this case, the response is expected to stream until the connection is
234239 // closed, indicating the end of the body.
235240 const test_server = try createTestServer(struct {