test: Partially disable vector float operators on mips.

https://github.com/ziglang/zig/issues/21051
This commit is contained in:
Alex Rønne Petersen 2024-08-12 13:32:01 +02:00
parent abf6f35654
commit 19a91084c2
No known key found for this signature in database

View File

@ -133,6 +133,9 @@ test "vector float operators" {
try S.doTheTest(f16);
try comptime S.doTheTest(f16);
// https://github.com/llvm/llvm-project/issues/102870
if (builtin.cpu.arch.isMIPS()) return error.SkipZigTest;
try S.doTheTest(f80);
try comptime S.doTheTest(f80);