authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-03-11 12:49:53-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-03-11 12:49:53-07:00
log86a98b172be5060110efdd9c61415c841042564e
treec922dc4188f6a734d5ccf1bcde4b93d97332f40f
parent4c1cc4d8d91af459e5ac1e20b744c7dc9b5b8da3

std.os: disable failing fnctl file locking test

See #11074

1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/os/test.zig+1-1
...@@ -834,7 +834,7 @@ test "writev longer than IOV_MAX" {...@@ -834,7 +834,7 @@ test "writev longer than IOV_MAX" {
834test "POSIX file locking with fcntl" {834test "POSIX file locking with fcntl" {
835 if (native_os == .windows or native_os == .wasi) return error.SkipZigTest;835 if (native_os == .windows or native_os == .wasi) return error.SkipZigTest;
836836
837 if (native_os == .linux and builtin.cpu.arch == .aarch64) {837 if (native_os == .linux) {
838 // https://github.com/ziglang/zig/issues/11074838 // https://github.com/ziglang/zig/issues/11074
839 return error.SkipZigTest;839 return error.SkipZigTest;
840 }840 }