authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-09-05 01:15:04+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-09-05 01:15:33+02:00
logee3efe8007402c496a6e589fc279e07578e8280f
treeb63108b18ac195c4b734e7f05587ebce7e4d9bd5
parent40ee6825170ed52ebd707262d1a88f237de54d6f
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

test: Add `powerpc64-linux-(none,musl)` triples to module tests.


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

test/tests.zig+24
......@@ -438,6 +438,30 @@ const test_targets = blk: {
438438 // .link_libc = true,
439439 //},
440440
441 .{
442 .target = .{
443 .cpu_arch = .powerpc64,
444 .os_tag = .linux,
445 .abi = .none,
446 },
447 },
448 .{
449 .target = .{
450 .cpu_arch = .powerpc64,
451 .os_tag = .linux,
452 .abi = .musl,
453 },
454 .link_libc = true,
455 },
456 // Requires ELFv1 linker support.
457 // .{
458 // .target = .{
459 // .cpu_arch = .powerpc64,
460 // .os_tag = .linux,
461 // .abi = .gnu,
462 // },
463 // .link_libc = true,
464 // },
441465 .{
442466 .target = .{
443467 .cpu_arch = .powerpc64le,