zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 736694b1e60cf63c60756acff3cd074bc9c4e9df (tree)
parent 7f55fa12f488406f63013e9ec7f04dfb04bfd792
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Tue,  1 Oct 2024 13:12:11 +0200

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

Diffstat:
Mtest/tests.zig | 24++++++++++++++++++++++++
1 file changed, 24 insertions(+), 0 deletions(-)

diff --git 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,