mirror of
https://github.com/ziglang/zig.git
synced 2026-02-13 12:59:04 +00:00
std: disable failing test on macos
See tracking issue https://github.com/ziglang/zig/issues/18395
This commit is contained in:
parent
668c0cdeda
commit
96b4eeab55
@ -752,6 +752,11 @@ test "fsync" {
|
||||
}
|
||||
|
||||
test "getrlimit and setrlimit" {
|
||||
if (builtin.target.os.tag == .macos) {
|
||||
// https://github.com/ziglang/zig/issues/18395
|
||||
return error.SkipZigTest;
|
||||
}
|
||||
|
||||
if (!@hasDecl(os.system, "rlimit")) {
|
||||
return error.SkipZigTest;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user