Skip to content

Commit c272ddc

Browse files
committed
std: Disable os.linux.test.test.fallocate on MIPS N32.
ziglang#23809
1 parent 2261d13 commit c272ddc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/std/os/linux/test.zig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ const expectEqual = std.testing.expectEqual;
88
const fs = std.fs;
99

1010
test "fallocate" {
11+
if (builtin.cpu.arch.isMIPS64() and (builtin.abi == .gnuabin32 or builtin.abi == .muslabin32)) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23809
12+
1113
var tmp = std.testing.tmpDir(.{});
1214
defer tmp.cleanup();
1315

0 commit comments

Comments
 (0)