From 86a98b172be5060110efdd9c61415c841042564e Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Fri, 11 Mar 2022 12:49:53 -0700 Subject: [PATCH] std.os: disable failing fnctl file locking test See #11074 --- lib/std/os/test.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/os/test.zig b/lib/std/os/test.zig index 273399a427..f6077cb38e 100644 --- a/lib/std/os/test.zig +++ b/lib/std/os/test.zig @@ -834,7 +834,7 @@ test "writev longer than IOV_MAX" { test "POSIX file locking with fcntl" { if (native_os == .windows or native_os == .wasi) return error.SkipZigTest; - if (native_os == .linux and builtin.cpu.arch == .aarch64) { + if (native_os == .linux) { // https://github.com/ziglang/zig/issues/11074 return error.SkipZigTest; }