aboutsummaryrefslogtreecommitdiff
path: root/test/tests.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2024-04-19 20:24:57 -0700
committerAndrew Kelley <andrew@ziglang.org>2024-04-19 20:24:57 -0700
commitdddddcffd0a3cbfab670ab91226e60e8a5a65c67 (patch)
treebabcf0bbd9210a0c4591449bb148615f4779d78f /test/tests.zig
parentd080622cc3f5db1ae3cd628c21c1ffaeb2b899d5 (diff)
downloadzig-dddddcffd0a3cbfab670ab91226e60e8a5a65c67.tar.gz
zig-dddddcffd0a3cbfab670ab91226e60e8a5a65c67.zip
disable RISC-V CI testing due to LLVM's O(N^2) codegen
tracked by #18872
Diffstat (limited to 'test/tests.zig')
-rw-r--r--test/tests.zig36
1 files changed, 21 insertions, 15 deletions
diff --git a/test/tests.zig b/test/tests.zig
index d18958cfc6..0ae3d32dc8 100644
--- a/test/tests.zig
+++ b/test/tests.zig
@@ -412,22 +412,28 @@ const test_targets = blk: {
.link_libc = true,
},
- .{
- .target = .{
- .cpu_arch = .riscv64,
- .os_tag = .linux,
- .abi = .none,
- },
- },
+ // Disabled until LLVM fixes their O(N^2) codegen.
+ // https://github.com/ziglang/zig/issues/18872
+ //.{
+ // .target = .{
+ // .cpu_arch = .riscv64,
+ // .os_tag = .linux,
+ // .abi = .none,
+ // },
+ // .use_llvm = true,
+ //},
- .{
- .target = .{
- .cpu_arch = .riscv64,
- .os_tag = .linux,
- .abi = .musl,
- },
- .link_libc = true,
- },
+ // Disabled until LLVM fixes their O(N^2) codegen.
+ // https://github.com/ziglang/zig/issues/18872
+ //.{
+ // .target = .{
+ // .cpu_arch = .riscv64,
+ // .os_tag = .linux,
+ // .abi = .musl,
+ // },
+ // .link_libc = true,
+ // .use_llvm = true,
+ //},
// https://github.com/ziglang/zig/issues/3340
//.{