test: Disable @min/max for floats on mips64.

https://github.com/ziglang/zig/issues/21090
This commit is contained in:
Alex Rønne Petersen 2024-08-16 11:23:51 +02:00
parent 4320611e6d
commit d4d6b23d64

View File

@ -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);
}