Commit 496e90a487

Alex Rønne Petersen <alex@alexrp.com>
2024-09-20 13:02:55
test: Add `riscv32-linux-(none,musl,gnu)` triples for module tests.
1 parent d83a3f1
Changed files (1)
test/tests.zig
@@ -579,6 +579,30 @@ const test_targets = blk: {
             .link_libc = true,
         },
 
+        .{
+            .target = .{
+                .cpu_arch = .riscv32,
+                .os_tag = .linux,
+                .abi = .none,
+            },
+        },
+        .{
+            .target = .{
+                .cpu_arch = .riscv32,
+                .os_tag = .linux,
+                .abi = .musl,
+            },
+            .link_libc = true,
+        },
+        .{
+            .target = .{
+                .cpu_arch = .riscv32,
+                .os_tag = .linux,
+                .abi = .gnu,
+            },
+            .link_libc = true,
+        },
+
         .{
             .target = .{
                 .cpu_arch = .riscv64,