diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2022-03-11 12:49:53 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2022-03-11 12:49:53 -0700 |
| commit | 86a98b172be5060110efdd9c61415c841042564e (patch) | |
| tree | c922dc4188f6a734d5ccf1bcde4b93d97332f40f /lib/std | |
| parent | 4c1cc4d8d91af459e5ac1e20b744c7dc9b5b8da3 (diff) | |
| download | zig-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.zig | 2 |
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; } |
