std: disable flaky os.fcntl test

See tracking issue #11074
This commit is contained in:
Andrew Kelley 2022-03-06 20:49:49 -07:00
parent e74382b602
commit 76d810c568

View File

@ -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();