authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-04-28 12:02:51+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-04-28 12:05:19+02:00
log12f56b874015be2b10ce3a279f146cba5d61c9f7
tree7b30a7ebe451587207d072c290f8a6c83007acbf
parentfd4fcefe8aee5a8587b27e41de409a14e2c1dacc
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

test: Disable `vector reduce operation` for sparc.

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

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

test/behavior/vector.zig+1
...@@ -765,6 +765,7 @@ test "vector reduce operation" {...@@ -765,6 +765,7 @@ test "vector reduce operation" {
765 if (builtin.zig_backend == .stage2_c and builtin.cpu.arch.isArm()) return error.SkipZigTest;765 if (builtin.zig_backend == .stage2_c and builtin.cpu.arch.isArm()) return error.SkipZigTest;
766 if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;766 if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
767 if (builtin.cpu.arch.isMIPS64()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21091767 if (builtin.cpu.arch.isMIPS64()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21091
768 if (builtin.cpu.arch.isSPARC()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23719
768769
769 const S = struct {770 const S = struct {
770 fn testReduce(comptime op: std.builtin.ReduceOp, x: anytype, expected: anytype) !void {771 fn testReduce(comptime op: std.builtin.ReduceOp, x: anytype, expected: anytype) !void {