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-05-01 21:34:57+02:00
logaea1272a3f7d9b291382f11239aaa27f68920c8a
tree7738c9c714cf23e2fa4e620e42570e68c6752159
parenta09c1d91ede780beff8a196f16f34f8d7a3224c9
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
...@@ -768,6 +768,7 @@ test "vector reduce operation" {...@@ -768,6 +768,7 @@ test "vector reduce operation" {
768 if (builtin.zig_backend == .stage2_c and builtin.cpu.arch.isArm()) return error.SkipZigTest;768 if (builtin.zig_backend == .stage2_c and builtin.cpu.arch.isArm()) return error.SkipZigTest;
769 if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;769 if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
770 if (builtin.cpu.arch.isMIPS64()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21091770 if (builtin.cpu.arch.isMIPS64()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21091
771 if (builtin.cpu.arch.isSPARC()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23719
771772
772 const S = struct {773 const S = struct {
773 fn testReduce(comptime op: std.builtin.ReduceOp, x: anytype, expected: anytype) !void {774 fn testReduce(comptime op: std.builtin.ReduceOp, x: anytype, expected: anytype) !void {