From 5b34a1b718a839b8f1cee5655a1587100e8f60f2 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Fri, 23 Feb 2024 02:36:34 -0700 Subject: [PATCH] std.http: disable the test that was never passing on windows We didn't know it wasn't passing before because it wasn't actually being run. --- 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 a46459357a..61bd00a6e7 100644 --- a/lib/std/http/test.zig +++ b/lib/std/http/test.zig @@ -291,6 +291,11 @@ test "Server.Request.respondStreaming non-chunked, unknown content-length" { } test "general client/server API coverage" { + if (builtin.os.tag == .windows) { + // This test was never passing on Windows. + return error.SkipZigTest; + } + const global = struct { var handle_new_requests = true; };