authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-10-03 00:16:43+02:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2024-10-03 00:16:43+02:00
log0548a61f5386dcd67c83d49db37b815eef92635e
tree4a05d6519c2e15359a17260db1ac160bc926ff54
parente0ac776749f2d5ac3ffd5717ce5208f859d12028
parent496e90a487ac3204e4c7fb1ec803a5d2f0bd422d
signaturebadge-check Signed by PGP key B5690EEEBB952194

Merge pull request #21469 from alexrp/riscv32-tests

`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: {
579579 .link_libc = true,
580580 },
581581
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
582606 .{
583607 .target = .{
584608 .cpu_arch = .riscv64,