zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 7e54ee06d84a0f810b08c544e7532d022da841a0 (tree)
parent 3333bcc4f2f4d66d9281eb81ed9a3a221cb498a9
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Thu, 20 Nov 2025 07:56:29 +0100

test: disable `big simd vector` C ABI test on s390x

Diffstat:
Mtest/c_abi/main.zig | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/test/c_abi/main.zig b/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 });