authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-08-16 11:24:34+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-08-18 07:27:23+02:00
logecbc701376c944e201ccaa24910ba1dfdcc7a4b0
treeb67a809bf179484339ad380dc8f02f0881fc7d09
parentd4d6b23d642a12b76c28e4e1e8e33c4a6e97ea75

test: Disable `vector reduce operation` on mips64.

https://github.com/ziglang/zig/issues/21091

1 files changed, 1 insertions(+), 0 deletions(-)

test/behavior/vector.zig+1
......@@ -773,6 +773,7 @@ test "vector reduce operation" {
773773 if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
774774 if (builtin.zig_backend == .stage2_c and comptime builtin.cpu.arch.isArmOrThumb()) return error.SkipZigTest;
775775 if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
776 if (builtin.cpu.arch.isMIPS64()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21091
776777
777778 const S = struct {
778779 fn testReduce(comptime op: std.builtin.ReduceOp, x: anytype, expected: anytype) !void {