commit 96b4eeab55e21b294af3c915dda2881258601532 (tree)
parent 668c0cdeda93491050b1f260865a963d008fd553
Author: Andrew Kelley <andrew@ziglang.org>
Date: Thu, 28 Dec 2023 21:21:42 -0700
std: disable failing test on macos
See tracking issue https://github.com/ziglang/zig/issues/18395
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/lib/std/os/test.zig b/lib/std/os/test.zig
@@ -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;
}