Commit 97ec177953

Andrew Kelley <andrew@ziglang.org>
2020-11-09 23:33:40
std.ResetEvent: disable flaky test on Windows
See #7009
1 parent 810c03f
Changed files (1)
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;
     }