zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 76d810c568648e32af0d74af2037b73b7ea38270 (tree)
parent e74382b602742df46818748ba63596b7806e475f
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Sun,  6 Mar 2022 20:49:49 -0700

std: disable flaky os.fcntl test

See tracking issue #11074

Diffstat:
Mlib/std/os/test.zig | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git 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();