authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-05-06 05:36:40+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-05-08 21:32:22+02:00
logc272ddc070f5f09a145a785f28f0dfa24b55575a
treeaf8abbfa2e5b1d265780c956a045a598533dae87
parent2261d13759a18f2cf2a873ffb0830cbb36e12838
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

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

https://github.com/ziglang/zig/issues/23809

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

lib/std/os/linux/test.zig+2
...@@ -8,6 +8,8 @@ const expectEqual = std.testing.expectEqual;...@@ -8,6 +8,8 @@ const expectEqual = std.testing.expectEqual;
8const fs = std.fs;8const fs = std.fs;
99
10test "fallocate" {10test "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
11 var tmp = std.testing.tmpDir(.{});13 var tmp = std.testing.tmpDir(.{});
12 defer tmp.cleanup();14 defer tmp.cleanup();
1315