authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-11-19 13:28:54-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-11-19 13:28:54-07:00
log647c6e0d0955260947d9a0e07014af2a337d9330
tree134bbbde5bc0a8f8669045441549144749a38252
parentcf819b95fe7dec15f4ed87cd4bd8ae0be8ce7fdf

tfw you can't even disable a test without getting the logic wrong


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/reset_event.zig+1-1
...@@ -363,7 +363,7 @@ const AtomicEvent = struct {...@@ -363,7 +363,7 @@ const AtomicEvent = struct {
363};363};
364364
365test "ResetEvent" {365test "ResetEvent" {
366 if (false) {366 if (true) {
367 // I have now observed this fail on macOS, Windows, and Linux.367 // I have now observed this fail on macOS, Windows, and Linux.
368 // https://github.com/ziglang/zig/issues/7009368 // https://github.com/ziglang/zig/issues/7009
369 return error.SkipZigTest;369 return error.SkipZigTest;