mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +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
@ -291,6 +291,11 @@ test "Server.Request.respondStreaming non-chunked, unknown content-length" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
test "general client/server API coverage" {
|
test "general client/server API coverage" {
|
||||||
|
if (builtin.os.tag == .windows) {
|
||||||
|
// This test was never passing on Windows.
|
||||||
|
return error.SkipZigTest;
|
||||||
|
}
|
||||||
|
|
||||||
const global = struct {
|
const global = struct {
|
||||||
var handle_new_requests = true;
|
var handle_new_requests = true;
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user