Commit d4d6b23d64

Alex Rønne Petersen <alex@alexrp.com>
2024-08-16 11:23:51
test: Disable `@min/max for floats` on mips64.
https://github.com/ziglang/zig/issues/21090
1 parent 4320611
Changed files (1)
test
test/behavior/maximum_minimum.zig
@@ -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);
     }