authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-12-16 09:01:51+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-12-16 09:01:51+01:00
logb9eefe17af2c30855f229f5214679d3766966b85
tree5fd23368ef4895a8952374c61fa882146f2dfb20
parent00903d35b1bfbabe7d118df49ff5cbe1e6afb855
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

test: fix up c3ee8078b475e74772ad8a05f13869ce1a2c1128

Oops, accidentally didn't run the tests for 32-bit powerpc.

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

test/c_abi/main.zig+2-2
......@@ -1267,7 +1267,7 @@ extern fn c_ret_vector_256_bool() Vector256Bool;
12671267extern fn c_ret_vector_512_bool() Vector512Bool;
12681268
12691269test "bool simd vector" {
1270 if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch != .wasm32) return error.SkipZigTest;
1270 if (builtin.zig_backend == .stage2_llvm and (builtin.cpu.arch != .powerpc and builtin.cpu.arch != .wasm32)) return error.SkipZigTest;
12711271
12721272 {
12731273 c_vector_2_bool(.{
......@@ -3373,7 +3373,7 @@ test "bool simd vector" {
33733373comptime {
33743374 skip: {
33753375 if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch == .x86_64) break :skip;
3376 if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch.isPowerPC()) break :skip;
3376 if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch.isPowerPC64()) break :skip;
33773377
33783378 _ = struct {
33793379 export fn zig_vector_2_bool(vec: Vector2Bool) void {