commit 238718b93abfe97bd5531103cf39714ec66fd86e (tree) parent 9c2b014ea82fdfbb4b46ce789898623be450cca5 Author: Andrew Kelley <andrew@ziglang.org> Date: Tue, 17 Nov 2020 17:07:03 -0700 disable the flaky ResetEvent test See #7009 Diffstat:
| M | lib/std/reset_event.zig | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lib/std/reset_event.zig b/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; }