Skip to content

Commit 2cbf745

Browse files
committed
std: disable failing test on macos
See tracking issue #18395
1 parent a6c8d56 commit 2cbf745

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lib/std/os/test.zig

+5
Original file line numberDiff line numberDiff line change
@@ -752,6 +752,11 @@ test "fsync" {
752752
}
753753

754754
test "getrlimit and setrlimit" {
755+
if (builtin.target.os.tag == .macos) {
756+
// https://github.com/ziglang/zig/issues/18395
757+
return error.SkipZigTest;
758+
}
759+
755760
if (!@hasDecl(os.system, "rlimit")) {
756761
return error.SkipZigTest;
757762
}

0 commit comments

Comments
 (0)