mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
std: Disable posix.test.test.fchmodat smoke test on MIPS N32.
https://github.com/ziglang/zig/issues/23808
This commit is contained in:
parent
dd1de18f96
commit
2261d13759
1 changed files with 2 additions and 0 deletions
|
|
@ -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(.{});
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue