Commit 238718b93a

Andrew Kelley <andrew@ziglang.org>
2020-11-18 01:07:03
disable the flaky ResetEvent test
See #7009
1 parent 9c2b014
Changed files (1)
lib/std/reset_event.zig
@@ -363,7 +363,8 @@ const AtomicEvent = struct {
 };
 
 test "ResetEvent" {
-    if (std.Target.current.os.tag == .macos or std.Target.current.os.tag == .windows) {
+    if (false) {
+        // I have now observed this fail on macOS, Windows, and Linux.
         // https://github.com/ziglang/zig/issues/7009
         return error.SkipZigTest;
     }