Commit b3f52ae339

Alex Rønne Petersen <alex@alexrp.com>
2025-05-06 05:06:30
test: Disable `arrays and vectors with big integers` on MIPS N32.
https://github.com/ziglang/zig/issues/23805
1 parent d3e8541
Changed files (1)
test
behavior
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;