test: disable big simd vector C ABI test on s390x

This commit is contained in:
Alex Rønne Petersen 2025-11-20 07:56:29 +01:00
parent 3333bcc4f2
commit 7e54ee06d8
No known key found for this signature in database

View file

@ -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 });