test: Add s390x-linux-(none,musl,gnu) triples to module tests.

This commit is contained in:
Alex Rønne Petersen 2024-10-01 13:12:11 +02:00
parent 7f55fa12f4
commit 736694b1e6
No known key found for this signature in database

View File

@ -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,