From 075ec5555264b759035e7d607faf03704075af23 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Thu, 19 Sep 2024 18:19:59 -0700 Subject: [PATCH] disable failing test tracked by #21457 --- lib/std/http/test.zig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/std/http/test.zig b/lib/std/http/test.zig index caeed0e1ea..dc944fbabb 100644 --- a/lib/std/http/test.zig +++ b/lib/std/http/test.zig @@ -230,6 +230,11 @@ test "echo content server" { } test "Server.Request.respondStreaming non-chunked, unknown content-length" { + if (builtin.os.tag == .windows) { + // https://github.com/ziglang/zig/issues/21457 + return error.SkipZigTest; + } + // In this case, the response is expected to stream until the connection is // closed, indicating the end of the body. const test_server = try createTestServer(struct {