test: Add s390x-linux-(none,musl,gnu) triples to module tests.
1 files changed, 24 insertions(+), 0 deletions(-)
test
test/tests.zig+24
| ... | ... | @@ -636,6 +636,30 @@ const test_targets = blk: { |
| 636 | 636 | .use_lld = false, |
| 637 | 637 | }, |
| 638 | 638 | |
| 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 | 664 | .target = .{ |
| 641 | 665 | .cpu_arch = .x86_64, |