authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-05-18 21:18:14+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-05-19 00:19:52+02:00
logf3d51edbef7570c4e4867846584a5321420472dd
tree9d843d7490731fda29be43063973653d93978b06
parent3b330f1d7c36416924f8986a6c541331130297d4
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

test: add sparc64-linux-none to module test matrix


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

test/tests.zig+17
......@@ -995,6 +995,23 @@ const module_test_targets = blk: {
995995 .link_libc = true,
996996 },
997997
998 .{
999 .target = .{
1000 .cpu_arch = .sparc64,
1001 .os_tag = .linux,
1002 .abi = .none,
1003 },
1004 },
1005 // SPARC linking support is currently incomplete.
1006 // .{
1007 // .target = .{
1008 // .cpu_arch = .sparc64,
1009 // .os_tag = .linux,
1010 // .abi = .gnu,
1011 // },
1012 // .link_libc = true,
1013 // },
1014
9981015 // Calls are normally lowered to branch instructions that only support +/- 16 MB range when
9991016 // targeting Thumb. This easily becomes insufficient for our test binaries, so use long
10001017 // calls to avoid out-of-range relocations.