| author | |
| committer | |
| log | 0548a61f5386dcd67c83d49db37b815eef92635e |
| tree | 4a05d6519c2e15359a17260db1ac160bc926ff54 |
| parent | e0ac776749f2d5ac3ffd5717ce5208f859d12028 |
| parent | 496e90a487ac3204e4c7fb1ec803a5d2f0bd422d |
| signature |
`test`: Add `riscv32-linux-(none,musl,gnu)` triples for module tests.1 files changed, 24 insertions(+), 0 deletions(-)
test/tests.zig+24| ... | @@ -579,6 +579,30 @@ const test_targets = blk: { | ... | @@ -579,6 +579,30 @@ const test_targets = blk: { |
| 579 | .link_libc = true, | 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 | .target = .{ | 607 | .target = .{ |
| 584 | .cpu_arch = .riscv64, | 608 | .cpu_arch = .riscv64, |