diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2024-10-01 13:12:11 +0200 |
|---|---|---|
| committer | Alex Rønne Petersen <alex@alexrp.com> | 2024-10-04 00:26:55 +0200 |
| commit | 736694b1e60cf63c60756acff3cd074bc9c4e9df (patch) | |
| tree | 35192d223cd0f828dc1b86239bb645d608dfd079 /test/tests.zig | |
| parent | 7f55fa12f488406f63013e9ec7f04dfb04bfd792 (diff) | |
| download | zig-736694b1e60cf63c60756acff3cd074bc9c4e9df.tar.gz zig-736694b1e60cf63c60756acff3cd074bc9c4e9df.zip | |
test: Add s390x-linux-(none,musl,gnu) triples to module tests.
Diffstat (limited to 'test/tests.zig')
| -rw-r--r-- | test/tests.zig | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/tests.zig b/test/tests.zig index 1d6c33bd24..1e98a48489 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -638,6 +638,30 @@ const test_targets = blk: { .{ .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, .os_tag = .macos, .abi = .none, |
