From 2261d13759a18f2cf2a873ffb0830cbb36e12838 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Tue, 6 May 2025 05:36:20 +0200 Subject: [PATCH] std: Disable `posix.test.test.fchmodat smoke test` on MIPS N32. https://github.com/ziglang/zig/issues/23808 --- lib/std/posix/test.zig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/std/posix/test.zig b/lib/std/posix/test.zig index c886ed6153..2458c777d9 100644 --- a/lib/std/posix/test.zig +++ b/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(.{});