Commit 736694b1e6

Alex Rønne Petersen <alex@alexrp.com>
2024-10-01 13:12:11
test: Add s390x-linux-(none,musl,gnu) triples to module tests.
1 parent 7f55fa1
Changed files (1)
test/tests.zig
@@ -636,6 +636,30 @@ const test_targets = blk: {
             .use_lld = false,
         },
 
+        .{
+            .target = .{
+                .cpu_arch = .s390x,
+                .os_tag = .linux,
+                .abi = .none,
+            },
+        },
+        .{
+            .target = .{
+                .cpu_arch = .s390x,
+                .os_tag = .linux,
+                .abi = .musl,
+            },
+            .link_libc = true,
+        },
+        .{
+            .target = .{
+                .cpu_arch = .s390x,
+                .os_tag = .linux,
+                .abi = .gnu,
+            },
+            .link_libc = true,
+        },
+
         .{
             .target = .{
                 .cpu_arch = .x86_64,