authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-03-06 20:49:49-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-03-06 20:49:49-07:00
log76d810c568648e32af0d74af2037b73b7ea38270
tree3cddf9774b5b54685c66f9658da547553c1ce723
parente74382b602742df46818748ba63596b7806e475f

std: disable flaky os.fcntl test

See tracking issue #11074

1 files changed, 5 insertions(+), 0 deletions(-)

lib/std/os/test.zig+5
...@@ -834,6 +834,11 @@ test "writev longer than IOV_MAX" {...@@ -834,6 +834,11 @@ test "writev longer than IOV_MAX" {
834test "POSIX file locking with fcntl" {834test "POSIX file locking with fcntl" {
835 if (native_os == .windows or native_os == .wasi) return error.SkipZigTest;835 if (native_os == .windows or native_os == .wasi) return error.SkipZigTest;
836836
837 if (native_os == .linux and builtin.cpu.arch == .aarch64) {
838 // https://github.com/ziglang/zig/issues/11074
839 return error.SkipZigTest;
840 }
841
837 var tmp = std.testing.tmpDir(.{});842 var tmp = std.testing.tmpDir(.{});
838 defer tmp.cleanup();843 defer tmp.cleanup();
839844