| author | |
| committer | |
| log | 7a2624c3e40e2386a4a8a775b839e1d67608ec42 |
| tree | 9388d039a0b77211936c7264f5a3179f63ad51e6 |
| parent | c7b32eb99a0e45054aa06a6f7170705c02837458 |
See #9879. This regressed with the release of LLVM 13.0.0.1 files changed, 4 insertions(+), 0 deletions(-)
lib/std/bit_set.zig+4| ... | ... | @@ -1167,6 +1167,10 @@ test "IntegerBitSet" { |
| 1167 | 1167 | } |
| 1168 | 1168 | |
| 1169 | 1169 | test "ArrayBitSet" { |
| 1170 | if (@import("builtin").cpu.arch == .aarch64) { | |
| 1171 | // https://github.com/ziglang/zig/issues/9879 | |
| 1172 | return error.SkipZigTest; | |
| 1173 | } | |
| 1170 | 1174 | inline for (.{ 0, 1, 2, 31, 32, 33, 63, 64, 65, 254, 500, 3000 }) |size| { |
| 1171 | 1175 | try testStaticBitSet(ArrayBitSet(u8, size)); |
| 1172 | 1176 | try testStaticBitSet(ArrayBitSet(u16, size)); |