aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-07-06 02:38:37 -0700
committerAndrew Kelley <andrew@ziglang.org>2022-07-06 02:39:28 -0700
commitaab1284e10f962af300f495c5e3feccb54bd4964 (patch)
tree286f1f5d08023f20b1615f9321b3dbf3d4b59cde /test
parent38096960fb7defc707e002093de65e61ff8d94cd (diff)
downloadzig-aab1284e10f962af300f495c5e3feccb54bd4964.tar.gz
zig-aab1284e10f962af300f495c5e3feccb54bd4964.zip
disable failing standalone test - tools/gen_spirv_spec.zig
Because it is tripping an LLVM 13 assertion. See #12015
Diffstat (limited to 'test')
-rw-r--r--test/standalone.zig6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/standalone.zig b/test/standalone.zig
index 92d0ea4aa3..fe26bdc808 100644
--- a/test/standalone.zig
+++ b/test/standalone.zig
@@ -52,7 +52,11 @@ pub fn addCases(cases: *tests.StandaloneContext) void {
}
// Ensure the development tools are buildable.
- cases.add("tools/gen_spirv_spec.zig");
+
+ // Disabled due to tripping LLVM 13 assertion:
+ // https://github.com/ziglang/zig/issues/12015
+ //cases.add("tools/gen_spirv_spec.zig");
+
cases.add("tools/gen_stubs.zig");
cases.add("tools/generate_linux_syscalls.zig");
cases.add("tools/process_headers.zig");