authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-03-23 17:29:39-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-03-23 17:29:39-07:00
log57539a26b4b1a118c9947116f2873ea3c0ced3da
treebe2cc5c4bc98ed9ec8c7dd485d34b84b4cea1e75
parente02ec8f7f5485b4e95ca8089b25a1c76d85c5834

std.os: disable failing fnctl file locking test

See #11074

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

lib/std/os/test.zig+5-2
......@@ -832,9 +832,12 @@ test "writev longer than IOV_MAX" {
832832}
833833
834834test "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) {
836 // Not POSIX.
837 return error.SkipZigTest;
838 }
836839
837 if (native_os == .linux) {
840 if (true) {
838841 // https://github.com/ziglang/zig/issues/11074
839842 return error.SkipZigTest;
840843 }