Skip to content

Commit 927f24a

Browse files
committed
disable regressed test from LLVM 18 upgrade
tracked by #19824
1 parent 0b31e2a commit 927f24a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

test/behavior/shuffle.zig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,13 @@ test "@shuffle bool 1" {
5555
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
5656
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
5757

58+
if (builtin.zig_backend == .stage2_llvm and
59+
builtin.cpu.arch == .aarch64 and builtin.os.tag == .windows)
60+
{
61+
// https://github.com/ziglang/zig/issues/19824
62+
return error.SkipZigTest;
63+
}
64+
5865
const S = struct {
5966
fn doTheTest() !void {
6067
var x: @Vector(4, bool) = [4]bool{ false, true, false, true };

0 commit comments

Comments
 (0)