diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2025-05-06 05:06:30 +0200 |
|---|---|---|
| committer | Alex Rønne Petersen <alex@alexrp.com> | 2025-05-08 21:32:22 +0200 |
| commit | b3f52ae339623433d96d3ad06af0cd4665236f57 (patch) | |
| tree | a0ab392965a51605d6f321a23ec96bc6d18ef612 /test/behavior/basic.zig | |
| parent | d3e85412689ad3f53e2bfcd1b1ede4f02b77598f (diff) | |
| download | zig-b3f52ae339623433d96d3ad06af0cd4665236f57.tar.gz zig-b3f52ae339623433d96d3ad06af0cd4665236f57.zip | |
test: Disable `arrays and vectors with big integers` on MIPS N32.
https://github.com/ziglang/zig/issues/23805
Diffstat (limited to 'test/behavior/basic.zig')
| -rw-r--r-- | test/behavior/basic.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/behavior/basic.zig b/test/behavior/basic.zig index b4790b8aa4..bc9c71dd17 100644 --- 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; |
