Commit 7e54ee06d8

Alex Rønne Petersen <alex@alexrp.com>
2025-11-20 07:56:29
test: disable `big simd vector` C ABI test on s390x
1 parent 3333bcc
Changed files (1)
test
c_abi
test/c_abi/main.zig
@@ -1182,6 +1182,7 @@ test "big simd vector" {
     if (builtin.cpu.arch.isPowerPC64()) return error.SkipZigTest;
     if (builtin.cpu.arch.isLoongArch()) return error.SkipZigTest;
     if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch == .x86_64 and builtin.os.tag.isDarwin() and builtin.mode != .Debug) return error.SkipZigTest;
+    if (builtin.cpu.arch == .s390x) return error.SkipZigTest;
 
     c_big_vec(.{ 1, 2, 3, 4, 5, 6, 7, 8 });