Commit 86a98b172b

Andrew Kelley <andrew@ziglang.org>
2022-03-11 20:49:53
std.os: disable failing fnctl file locking test
See #11074
1 parent 4c1cc4d
Changed files (1)
lib
std
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;
     }