zig

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

commit 97ec1779537ed48c1bf873ec217f0308f2f26906 (tree)
parent 810c03f4261990cd57e886f0b759688c8d2b8d2b
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Mon,  9 Nov 2020 15:33:40 -0700

std.ResetEvent: disable flaky test on Windows

See #7009

Diffstat:
Mlib/std/reset_event.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/std/reset_event.zig b/lib/std/reset_event.zig @@ -360,7 +360,7 @@ const AtomicEvent = struct { }; test "ResetEvent" { - if (std.Target.current.os.tag == .macos) { + if (std.Target.current.os.tag == .macos or std.Target.current.os.tag == .windows) { // https://github.com/ziglang/zig/issues/7009 return error.SkipZigTest; }