Skip to content

Commit c061b3a

Browse files
committed
disable more standalone tests
these are tripping LLVM 13 assertions. See #12015 See #12022
1 parent aab1284 commit c061b3a

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

test/standalone.zig

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,15 @@ pub fn addCases(cases: *tests.StandaloneContext) void {
6262
cases.add("tools/process_headers.zig");
6363
cases.add("tools/update-license-headers.zig");
6464
cases.add("tools/update-linux-headers.zig");
65-
cases.add("tools/update_clang_options.zig");
65+
66+
// Disabled due to tripping LLVM 13 assertion:
67+
// https://github.com/ziglang/zig/issues/12022
68+
//cases.add("tools/update_clang_options.zig");
69+
6670
cases.add("tools/update_cpu_features.zig");
6771
cases.add("tools/update_glibc.zig");
68-
cases.add("tools/update_spirv_features.zig");
72+
73+
// Disabled due to tripping LLVM 13 assertion:
74+
// https://github.com/ziglang/zig/issues/12015
75+
//cases.add("tools/update_spirv_features.zig");
6976
}

0 commit comments

Comments
 (0)