Skip to content

Commit

Permalink
std.ResetEvent: disable flaky test on Windows
Browse files Browse the repository at this point in the history
See #7009
  • Loading branch information
andrewrk committed Nov 9, 2020
1 parent 9993204 commit 83a1523
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/std/reset_event.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 83a1523

Please sign in to comment.