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

https://github.com/ziglang/zig/issues/23808
This commit is contained in:
Alex Rønne Petersen 2025-05-06 05:36:20 +02:00
parent dd1de18f96
commit 2261d13759
No known key found for this signature in database

View file

@ -1377,6 +1377,8 @@ fn expectMode(dir: posix.fd_t, file: []const u8, mode: posix.mode_t) !void {
} }
test "fchmodat smoke test" { 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; if (!std.fs.has_executable_bit) return error.SkipZigTest;
var tmp = tmpDir(.{}); var tmp = tmpDir(.{});