authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-09-20 13:02:55+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-09-20 13:03:33+02:00
log496e90a487ac3204e4c7fb1ec803a5d2f0bd422d
treef360d662c98b75080d932e81f63715e6f8a92341
parentd83a3f1746c81026d1cf0244156513c9b5a2a9f6
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

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,