mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
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.
This commit is contained in:
parent
d7ac8c8e65
commit
5b34a1b718
1 changed files with 5 additions and 0 deletions
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue