zig

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

commit b3f52ae339623433d96d3ad06af0cd4665236f57 (tree)
parent d3e85412689ad3f53e2bfcd1b1ede4f02b77598f
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Tue,  6 May 2025 05:06:30 +0200

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

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

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

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