From 76d810c568648e32af0d74af2037b73b7ea38270 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sun, 6 Mar 2022 20:49:49 -0700 Subject: [PATCH] std: disable flaky os.fcntl test See tracking issue #11074 --- lib/std/os/test.zig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/std/os/test.zig b/lib/std/os/test.zig index 348f5ffaa8..273399a427 100644 --- a/lib/std/os/test.zig +++ b/lib/std/os/test.zig @@ -834,6 +834,11 @@ 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) { + // https://github.com/ziglang/zig/issues/11074 + return error.SkipZigTest; + } + var tmp = std.testing.tmpDir(.{}); defer tmp.cleanup();