mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:44:43 +01:00
test: Disable arrays and vectors with big integers on MIPS N32.
https://github.com/ziglang/zig/issues/23805
This commit is contained in:
parent
d3e8541268
commit
b3f52ae339
1 changed files with 1 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue