std: Disable os.linux.test.test.fallocate on MIPS N32.

https://github.com/ziglang/zig/issues/23809
This commit is contained in:
Alex Rønne Petersen 2025-05-06 05:36:40 +02:00
parent 2261d13759
commit c272ddc070
No known key found for this signature in database

View file

@ -8,6 +8,8 @@ const expectEqual = std.testing.expectEqual;
const fs = std.fs; const fs = std.fs;
test "fallocate" { test "fallocate" {
if (builtin.cpu.arch.isMIPS64() and (builtin.abi == .gnuabin32 or builtin.abi == .muslabin32)) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23809
var tmp = std.testing.tmpDir(.{}); var tmp = std.testing.tmpDir(.{});
defer tmp.cleanup(); defer tmp.cleanup();