Commit 075ec55552

Andrew Kelley <andrew@ziglang.org>
2024-09-20 03:19:59
disable failing test
tracked by #21457
1 parent 6294e65
Changed files (1)
lib
std
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 {