| ... | @@ -2648,6 +2648,11 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step { | ... | @@ -2648,6 +2648,11 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step { |
| 2648 | continue; | 2648 | continue; |
| 2649 | } | 2649 | } |
| 2650 | | 2650 | |
| | 2651 | if (target.cpu.arch == .riscv64 and target.ofmt == .c) { |
| | 2652 | // https://codeberg.org/ziglang/zig/issues/30930 |
| | 2653 | continue; |
| | 2654 | } |
| | 2655 | |
| 2651 | if (std.mem.eql(u8, options.name, "libc")) { | 2656 | if (std.mem.eql(u8, options.name, "libc")) { |
| 2652 | // The libc API tests obviously need to link libc. So for test | 2657 | // The libc API tests obviously need to link libc. So for test |
| 2653 | // target entries where we wouldn't link libc by default, skip the | 2658 | // target entries where we wouldn't link libc by default, skip the |