std.ResetEvent: disable flaky test on Windows

See #7009
This commit is contained in:
Andrew Kelley
2020-11-09 15:33:40 -07:00
parent 99932042dc
commit 83a1523b1a

View File

@@ -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;
}