Skip to content

Commit 5b34a1b

Browse files
committed
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.
1 parent d7ac8c8 commit 5b34a1b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lib/std/http/test.zig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,11 @@ test "Server.Request.respondStreaming non-chunked, unknown content-length" {
291291
}
292292

293293
test "general client/server API coverage" {
294+
if (builtin.os.tag == .windows) {
295+
// This test was never passing on Windows.
296+
return error.SkipZigTest;
297+
}
298+
294299
const global = struct {
295300
var handle_new_requests = true;
296301
};

0 commit comments

Comments
 (0)