authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-07-06 15:10:41-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-07-06 15:10:41-07:00
logc061b3a5726f1a6cc1a6983e067312dddda94f42
treeb3c98588ec0d26a6ad6c4b737ab270a045573126
parentaab1284e10f962af300f495c5e3feccb54bd4964

disable more standalone tests

these are tripping LLVM 13 assertions. See #12015 See #12022

1 files changed, 9 insertions(+), 2 deletions(-)

test/standalone.zig+9-2
...@@ -62,8 +62,15 @@ pub fn addCases(cases: *tests.StandaloneContext) void {...@@ -62,8 +62,15 @@ pub fn addCases(cases: *tests.StandaloneContext) void {
62 cases.add("tools/process_headers.zig");62 cases.add("tools/process_headers.zig");
63 cases.add("tools/update-license-headers.zig");63 cases.add("tools/update-license-headers.zig");
64 cases.add("tools/update-linux-headers.zig");64 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
66 cases.add("tools/update_cpu_features.zig");70 cases.add("tools/update_cpu_features.zig");
67 cases.add("tools/update_glibc.zig");71 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");
69}76}