authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-05-06 05:06:30+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-05-08 21:32:22+02:00
logb3f52ae339623433d96d3ad06af0cd4665236f57
treea0ab392965a51605d6f321a23ec96bc6d18ef612
parentd3e85412689ad3f53e2bfcd1b1ede4f02b77598f
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

test: Disable `arrays and vectors with big integers` on MIPS N32.

https://github.com/ziglang/zig/issues/23805

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

test/behavior/basic.zig+1
......@@ -1204,6 +1204,7 @@ test "arrays and vectors with big integers" {
12041204 if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest;
12051205 if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
12061206 if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
1207 if (builtin.zig_backend == .stage2_llvm and (builtin.abi == .gnuabin32 or builtin.abi == .muslabin32)) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23805
12071208
12081209 inline for (.{ u65528, u65529, u65535 }) |Int| {
12091210 var a: [1]Int = undefined;