authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-11-03 07:58:49+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-11-04 08:29:42+01:00
log4049be90de6a557c1ab522363fddbb71d3ccdb18
tree8b86dd349d500e5898e189835f044ebf01596e0d
parent9d0bb7ada81f91d16d985340ab8d9fe98ad40565
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

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


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

test/tests.zig+24
......@@ -291,6 +291,30 @@ const test_targets = blk: {
291291 .link_libc = true,
292292 },
293293
294 .{
295 .target = .{
296 .cpu_arch = .aarch64_be,
297 .os_tag = .linux,
298 .abi = .none,
299 },
300 },
301 .{
302 .target = .{
303 .cpu_arch = .aarch64_be,
304 .os_tag = .linux,
305 .abi = .musl,
306 },
307 .link_libc = true,
308 },
309 .{
310 .target = .{
311 .cpu_arch = .aarch64_be,
312 .os_tag = .linux,
313 .abi = .gnu,
314 },
315 .link_libc = true,
316 },
317
294318 .{
295319 .target = .{
296320 .cpu_arch = .arm,