commit aea1272a3f7d9b291382f11239aaa27f68920c8a (tree)
parent a09c1d91ede780beff8a196f16f34f8d7a3224c9
Author: Alex Rønne Petersen <alex@alexrp.com>
Date: Mon, 28 Apr 2025 12:02:51 +0200
test: Disable `vector reduce operation` for sparc.
https://github.com/ziglang/zig/issues/23719
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/test/behavior/vector.zig b/test/behavior/vector.zig
@@ -768,6 +768,7 @@ test "vector reduce operation" {
if (builtin.zig_backend == .stage2_c and builtin.cpu.arch.isArm()) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
if (builtin.cpu.arch.isMIPS64()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21091
+ if (builtin.cpu.arch.isSPARC()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23719
const S = struct {
fn testReduce(comptime op: std.builtin.ReduceOp, x: anytype, expected: anytype) !void {