aboutsummaryrefslogtreecommitdiff
path: root/lib/std
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-03-11 12:49:53 -0700
committerAndrew Kelley <andrew@ziglang.org>2022-03-11 12:49:53 -0700
commit86a98b172be5060110efdd9c61415c841042564e (patch)
treec922dc4188f6a734d5ccf1bcde4b93d97332f40f /lib/std
parent4c1cc4d8d91af459e5ac1e20b744c7dc9b5b8da3 (diff)
downloadzig-86a98b172be5060110efdd9c61415c841042564e.tar.gz
zig-86a98b172be5060110efdd9c61415c841042564e.zip
std.os: disable failing fnctl file locking test
See #11074
Diffstat (limited to 'lib/std')
-rw-r--r--lib/std/os/test.zig2
1 files changed, 1 insertions, 1 deletions
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;
}