mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
parent
e5fab3ba68
commit
c923f74fc9
1 changed files with 6 additions and 1 deletions
|
|
@ -359,7 +359,12 @@ const AtomicEvent = struct {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
test "std.ResetEvent" {
|
test "ResetEvent" {
|
||||||
|
if (std.Target.current.os.tag == .macos) {
|
||||||
|
// https://github.com/ziglang/zig/issues/7009
|
||||||
|
return error.SkipZigTest;
|
||||||
|
}
|
||||||
|
|
||||||
var event = ResetEvent.init();
|
var event = ResetEvent.init();
|
||||||
defer event.deinit();
|
defer event.deinit();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue