test: skip some C ABI vector tests on powerpc

These fail on a pwr10 machine.
This commit is contained in:
Alex Rønne Petersen
2025-12-11 19:47:32 +01:00
parent eaae3f936b
commit c3ee8078b4
+2 -1
View File
@@ -1267,7 +1267,7 @@ extern fn c_ret_vector_256_bool() Vector256Bool;
extern fn c_ret_vector_512_bool() Vector512Bool;
test "bool simd vector" {
if (builtin.zig_backend == .stage2_llvm and (builtin.cpu.arch != .powerpc and builtin.cpu.arch != .wasm32)) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch != .wasm32) return error.SkipZigTest;
{
c_vector_2_bool(.{
@@ -3373,6 +3373,7 @@ test "bool simd vector" {
comptime {
skip: {
if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch == .x86_64) break :skip;
if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch.isPowerPC()) break :skip;
_ = struct {
export fn zig_vector_2_bool(vec: Vector2Bool) void {