Commit badc28c06e

Andrew Kelley <andrew@ziglang.org>
2024-05-01 05:47:42
disable regressed test from LLVM 18 upgrade
tracked by #19825
1 parent 200e06b
Changed files (1)
test
behavior
test/behavior/cast.zig
@@ -2481,6 +2481,13 @@ test "@intFromBool on vector" {
     if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
     if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
 
+    if (builtin.zig_backend == .stage2_llvm and
+        builtin.cpu.arch == .aarch64 and builtin.os.tag == .windows)
+    {
+        // https://github.com/ziglang/zig/issues/19825
+        return error.SkipZigTest;
+    }
+
     const S = struct {
         fn doTheTest() !void {
             var a: @Vector(3, bool) = .{ false, true, false };