Skip to content

Commit 1c9d9b7

Browse files
committed
std.bit_set: Disable IntegerBitSet decltest on RISC-V with vector support
#24300
1 parent 9f064df commit 1c9d9b7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/std/bit_set.zig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1699,6 +1699,7 @@ fn testStaticBitSet(comptime Set: type) !void {
16991699

17001700
test IntegerBitSet {
17011701
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
1702+
if (comptime builtin.cpu.has(.riscv, .v) and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/24300
17021703

17031704
try testStaticBitSet(IntegerBitSet(0));
17041705
try testStaticBitSet(IntegerBitSet(1));

0 commit comments

Comments
 (0)