From 736694b1e60cf63c60756acff3cd074bc9c4e9df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Tue, 1 Oct 2024 13:12:11 +0200 Subject: [PATCH] test: Add s390x-linux-(none,musl,gnu) triples to module tests. --- test/tests.zig | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/test/tests.zig b/test/tests.zig index 1d6c33bd24489ae1c647f9f1edb8bf8c3f6a6d1e..1e98a48489a4d485b73cdbf6d1851e082de6aa09 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -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, -- 2.54.0