zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 5b34a1b718a839b8f1cee5655a1587100e8f60f2 (tree)
parent d7ac8c8e6552462d3e5e3b4ebce8a4e2ca93be76
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Fri, 23 Feb 2024 02:36:34 -0700

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.

Diffstat:
Mlib/std/http/test.zig | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git 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; };