| author | |
| committer | |
| log | 76d810c568648e32af0d74af2037b73b7ea38270 |
| tree | 3cddf9774b5b54685c66f9658da547553c1ce723 |
| parent | e74382b602742df46818748ba63596b7806e475f |
See tracking issue #110741 files changed, 5 insertions(+), 0 deletions(-)
lib/std/os/test.zig+5| ... | ... | @@ -834,6 +834,11 @@ test "writev longer than IOV_MAX" { |
| 834 | 834 | test "POSIX file locking with fcntl" { |
| 835 | 835 | if (native_os == .windows or native_os == .wasi) return error.SkipZigTest; |
| 836 | 836 | |
| 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 | 842 | var tmp = std.testing.tmpDir(.{}); |
| 838 | 843 | defer tmp.cleanup(); |
| 839 | 844 |