aboutsummaryrefslogtreecommitdiff
path: root/lib/std
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-03-06 20:49:49 -0700
committerAndrew Kelley <andrew@ziglang.org>2022-03-06 20:49:49 -0700
commit76d810c568648e32af0d74af2037b73b7ea38270 (patch)
tree3cddf9774b5b54685c66f9658da547553c1ce723 /lib/std
parente74382b602742df46818748ba63596b7806e475f (diff)
downloadzig-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.zig5
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();