test: Add `riscv32-linux-(none,musl,gnu)` triples for module tests.
1 files changed, 24 insertions(+), 0 deletions(-)
test
test/tests.zig+24
| ... | ... | @@ -579,6 +579,30 @@ const test_targets = blk: { |
| 579 | 579 | .link_libc = true, |
| 580 | 580 | }, |
| 581 | 581 | |
| 582 | .{ |
| 583 | .target = .{ |
| 584 | .cpu_arch = .riscv32, |
| 585 | .os_tag = .linux, |
| 586 | .abi = .none, |
| 587 | }, |
| 588 | }, |
| 589 | .{ |
| 590 | .target = .{ |
| 591 | .cpu_arch = .riscv32, |
| 592 | .os_tag = .linux, |
| 593 | .abi = .musl, |
| 594 | }, |
| 595 | .link_libc = true, |
| 596 | }, |
| 597 | .{ |
| 598 | .target = .{ |
| 599 | .cpu_arch = .riscv32, |
| 600 | .os_tag = .linux, |
| 601 | .abi = .gnu, |
| 602 | }, |
| 603 | .link_libc = true, |
| 604 | }, |
| 605 | |
| 582 | 606 | .{ |
| 583 | 607 | .target = .{ |
| 584 | 608 | .cpu_arch = .riscv64, |