disable more standalone tests

these are tripping LLVM 13 assertions.

See #12015
See #12022
This commit is contained in:
Andrew Kelley 2022-07-06 15:10:41 -07:00
parent aab1284e10
commit c061b3a572

View File

@ -62,8 +62,15 @@ pub fn addCases(cases: *tests.StandaloneContext) void {
cases.add("tools/process_headers.zig");
cases.add("tools/update-license-headers.zig");
cases.add("tools/update-linux-headers.zig");
cases.add("tools/update_clang_options.zig");
// Disabled due to tripping LLVM 13 assertion:
// https://github.com/ziglang/zig/issues/12022
//cases.add("tools/update_clang_options.zig");
cases.add("tools/update_cpu_features.zig");
cases.add("tools/update_glibc.zig");
cases.add("tools/update_spirv_features.zig");
// Disabled due to tripping LLVM 13 assertion:
// https://github.com/ziglang/zig/issues/12015
//cases.add("tools/update_spirv_features.zig");
}