Commit 2261d13759

Alex Rønne Petersen <alex@alexrp.com>
2025-05-06 05:36:20
std: Disable `posix.test.test.fchmodat smoke test` on MIPS N32.
https://github.com/ziglang/zig/issues/23808
1 parent dd1de18
Changed files (1)
lib
std
posix
lib/std/posix/test.zig
@@ -1377,6 +1377,8 @@ fn expectMode(dir: posix.fd_t, file: []const u8, mode: posix.mode_t) !void {
 }
 
 test "fchmodat smoke test" {
+    if (builtin.cpu.arch.isMIPS64() and (builtin.abi == .gnuabin32 or builtin.abi == .muslabin32)) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23808
+
     if (!std.fs.has_executable_bit) return error.SkipZigTest;
 
     var tmp = tmpDir(.{});