From 61aaef0b074dc2567e4c35c9cb55cb042c18d065 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Tue, 13 Sep 2022 18:36:02 -0700 Subject: [PATCH] std: re-enable test case for fixed bug The miscompilation in question has been fixed upstream in LLVM 14. closes #9879 --- lib/std/bit_set.zig | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/std/bit_set.zig b/lib/std/bit_set.zig index 2da3f1ac21..992f19151b 100644 --- a/lib/std/bit_set.zig +++ b/lib/std/bit_set.zig @@ -1341,10 +1341,6 @@ 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));