diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-04-19 20:24:57 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2024-04-19 20:24:57 -0700 |
| commit | dddddcffd0a3cbfab670ab91226e60e8a5a65c67 (patch) | |
| tree | babcf0bbd9210a0c4591449bb148615f4779d78f /test/tests.zig | |
| parent | d080622cc3f5db1ae3cd628c21c1ffaeb2b899d5 (diff) | |
| download | zig-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.zig | 36 |
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 //.{ |
