Skip to content

Commit ecbc701

Browse files
committed
test: Disable vector reduce operation on mips64.
#21091
1 parent d4d6b23 commit ecbc701

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

test/behavior/vector.zig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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 {

0 commit comments

Comments
 (0)