zig

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

commit 7a2624c3e40e2386a4a8a775b839e1d67608ec42 (tree)
parent c7b32eb99a0e45054aa06a6f7170705c02837458
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Fri,  1 Oct 2021 22:32:13 -0700

std: disable ArrayBitSet test on aarch64

See #9879. This regressed with the release of LLVM 13.0.0.

Diffstat:
Mlib/std/bit_set.zig | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/lib/std/bit_set.zig b/lib/std/bit_set.zig @@ -1167,6 +1167,10 @@ test "IntegerBitSet" { } test "ArrayBitSet" { + if (@import("builtin").cpu.arch == .aarch64) { + // https://github.com/ziglang/zig/issues/9879 + return error.SkipZigTest; + } inline for (.{ 0, 1, 2, 31, 32, 33, 63, 64, 65, 254, 500, 3000 }) |size| { try testStaticBitSet(ArrayBitSet(u8, size)); try testStaticBitSet(ArrayBitSet(u16, size));