diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2024-08-16 11:23:51 +0200 |
|---|---|---|
| committer | Alex Rønne Petersen <alex@alexrp.com> | 2024-08-18 07:27:23 +0200 |
| commit | d4d6b23d642a12b76c28e4e1e8e33c4a6e97ea75 (patch) | |
| tree | b359eb4bae17e82981a183e0b2b0233eb1bb2d62 /test/behavior/maximum_minimum.zig | |
| parent | 4320611e6dfecad9819281fb945ab2bfe5e182bd (diff) | |
| download | zig-d4d6b23d642a12b76c28e4e1e8e33c4a6e97ea75.tar.gz zig-d4d6b23d642a12b76c28e4e1e8e33c4a6e97ea75.zip | |
test: Disable `@min/max for floats` on mips64.
https://github.com/ziglang/zig/issues/21090
Diffstat (limited to 'test/behavior/maximum_minimum.zig')
| -rw-r--r-- | test/behavior/maximum_minimum.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/behavior/maximum_minimum.zig b/test/behavior/maximum_minimum.zig index d08bc82828..ab1803c5b1 100644 --- a/test/behavior/maximum_minimum.zig +++ b/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); } |
