diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2022-03-06 20:49:49 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2022-03-06 20:49:49 -0700 |
| commit | 76d810c568648e32af0d74af2037b73b7ea38270 (patch) | |
| tree | 3cddf9774b5b54685c66f9658da547553c1ce723 /lib/std | |
| parent | e74382b602742df46818748ba63596b7806e475f (diff) | |
| download | zig-76d810c568648e32af0d74af2037b73b7ea38270.tar.gz zig-76d810c568648e32af0d74af2037b73b7ea38270.zip | |
std: disable flaky os.fcntl test
See tracking issue #11074
Diffstat (limited to 'lib/std')
| -rw-r--r-- | lib/std/os/test.zig | 5 |
1 files changed, 5 insertions, 0 deletions
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(); |
