authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-10-01 13:12:11+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-10-04 00:26:55+02:00
log736694b1e60cf63c60756acff3cd074bc9c4e9df
tree35192d223cd0f828dc1b86239bb645d608dfd079
parent7f55fa12f488406f63013e9ec7f04dfb04bfd792
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

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


1 files changed, 24 insertions(+), 0 deletions(-)

test/tests.zig+24
...@@ -636,6 +636,30 @@ const test_targets = blk: {...@@ -636,6 +636,30 @@ const test_targets = blk: {
636 .use_lld = false,636 .use_lld = false,
637 },637 },
638638
639 .{
640 .target = .{
641 .cpu_arch = .s390x,
642 .os_tag = .linux,
643 .abi = .none,
644 },
645 },
646 .{
647 .target = .{
648 .cpu_arch = .s390x,
649 .os_tag = .linux,
650 .abi = .musl,
651 },
652 .link_libc = true,
653 },
654 .{
655 .target = .{
656 .cpu_arch = .s390x,
657 .os_tag = .linux,
658 .abi = .gnu,
659 },
660 .link_libc = true,
661 },
662
639 .{663 .{
640 .target = .{664 .target = .{
641 .cpu_arch = .x86_64,665 .cpu_arch = .x86_64,