Skip to content

Commit 2687d09

Browse files
committed
disable regressed test from LLVM 18 upgrade
tracked by #19825
1 parent c2382e5 commit 2687d09

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

test/behavior/cast.zig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2481,6 +2481,13 @@ test "@intFromBool on vector" {
24812481
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
24822482
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
24832483

2484+
if (builtin.zig_backend == .stage2_llvm and
2485+
builtin.cpu.arch == .aarch64 and builtin.os.tag == .windows)
2486+
{
2487+
// https://github.com/ziglang/zig/issues/19825
2488+
return error.SkipZigTest;
2489+
}
2490+
24842491
const S = struct {
24852492
fn doTheTest() !void {
24862493
var a: @Vector(3, bool) = .{ false, true, false };

0 commit comments

Comments
 (0)