mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:24:33 +01:00
test: Disable @min/max for floats on mips64.
https://github.com/ziglang/zig/issues/21090
This commit is contained in:
parent
4320611e6d
commit
d4d6b23d64
1 changed files with 2 additions and 0 deletions
|
|
@ -146,6 +146,8 @@ test "@min/max for floats" {
|
|||
};
|
||||
|
||||
inline for (.{ f16, f32, f64, f80, f128, c_longdouble }) |T| {
|
||||
if (T == c_longdouble and builtin.cpu.arch.isMIPS64()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21090
|
||||
|
||||
try S.doTheTest(T);
|
||||
try comptime S.doTheTest(T);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue