disable tests failing due to LLVM 15 regressions

This commit is contained in:
Andrew Kelley
2022-08-29 22:38:26 -07:00
parent bf28765a97
commit 3c506c8aaa
3 changed files with 80 additions and 66 deletions

View File

@@ -1089,6 +1089,12 @@ test "namespace lookup ignores decl causing the lookup" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_llvm) {
// regressed with LLVM 15
// https://github.com/ziglang/zig/issues/12681
return error.SkipZigTest;
}
const S = struct {
fn Mixin(comptime T: type) type {
return struct {