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

std: Disable `posix.test.test.fchmodat smoke test` on MIPS N32.

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

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

lib/std/posix/test.zig+2
......@@ -1377,6 +1377,8 @@ fn expectMode(dir: posix.fd_t, file: []const u8, mode: posix.mode_t) !void {
13771377}
13781378
13791379test "fchmodat smoke test" {
1380 if (builtin.cpu.arch.isMIPS64() and (builtin.abi == .gnuabin32 or builtin.abi == .muslabin32)) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23808
1381
13801382 if (!std.fs.has_executable_bit) return error.SkipZigTest;
13811383
13821384 var tmp = tmpDir(.{});