authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-11-18 01:08:06+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-11-19 01:42:45+01:00
logae0cc8c0659d95a30c6436abfe8c7ca862f570a3
tree0280e6ac42c339dd251ec97fce6854f432a66830
parenta8e77b7a059d02bd86d4388b42b8d7b6bef52360
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

test: disable C ABI tests using i128 on s390x due to an LLVM crash

https://github.com/llvm/llvm-project/issues/168460

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

test/c_abi/main.zig+2-1
......@@ -12,7 +12,8 @@ const expect = std.testing.expect;
1212const expectEqual = std.testing.expectEqual;
1313const have_i128 = builtin.cpu.arch != .x86 and !builtin.cpu.arch.isArm() and
1414 !builtin.cpu.arch.isMIPS() and !builtin.cpu.arch.isPowerPC32() and builtin.cpu.arch != .riscv32 and
15 builtin.cpu.arch != .hexagon;
15 builtin.cpu.arch != .hexagon and
16 builtin.cpu.arch != .s390x; // https://github.com/llvm/llvm-project/issues/168460
1617
1718const have_f128 = builtin.cpu.arch.isWasm() or (builtin.cpu.arch.isX86() and !builtin.os.tag.isDarwin());
1819const have_f80 = builtin.cpu.arch.isX86();