| author | |
| committer | |
| log | c923f74fc9daf838ad0c2186e49e6687845d06cd |
| tree | 9d00a6c5d941eeaefd6a83b2eaa9dd13216910ca |
| parent | e5fab3ba6898cce3eba63192b0944f4e2208a3b8 |
See #70091 files changed, 6 insertions(+), 1 deletions(-)
lib/std/reset_event.zig+6-1| ... | ... | @@ -359,7 +359,12 @@ const AtomicEvent = struct { |
| 359 | 359 | }; |
| 360 | 360 | }; |
| 361 | 361 | |
| 362 | test "std.ResetEvent" { | |
| 362 | test "ResetEvent" { | |
| 363 | if (std.Target.current.os.tag == .macos) { | |
| 364 | // https://github.com/ziglang/zig/issues/7009 | |
| 365 | return error.SkipZigTest; | |
| 366 | } | |
| 367 | ||
| 363 | 368 | var event = ResetEvent.init(); |
| 364 | 369 | defer event.deinit(); |
| 365 | 370 |