Skip to content

Commit

Permalink
disable regressed test from LLVM 18 upgrade
Browse files Browse the repository at this point in the history
tracked by #19824
  • Loading branch information
andrewrk committed May 7, 2024
1 parent d669ca5 commit 8347892
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions test/behavior/shuffle.zig
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@ test "@shuffle bool 1" {
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO

if (builtin.zig_backend == .stage2_llvm and
builtin.cpu.arch == .aarch64 and builtin.os.tag == .windows)
{
// https://github.com/ziglang/zig/issues/19824
return error.SkipZigTest;
}

const S = struct {
fn doTheTest() !void {
var x: @Vector(4, bool) = [4]bool{ false, true, false, true };
Expand Down

0 comments on commit 8347892

Please sign in to comment.