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

std: Disable `fs.test.test.setEndPos` on MIPS N32.

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

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

lib/std/fs/test.zig+1
......@@ -1394,6 +1394,7 @@ test "pwritev, preadv" {
13941394test "setEndPos" {
13951395 // https://github.com/ziglang/zig/issues/20747 (open fd does not have write permission)
13961396 if (native_os == .wasi and builtin.link_libc) return error.SkipZigTest;
1397 if (builtin.cpu.arch.isMIPS64() and (builtin.abi == .gnuabin32 or builtin.abi == .muslabin32)) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23806
13971398
13981399 var tmp = tmpDir(.{});
13991400 defer tmp.cleanup();