authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-04-17 02:52:12+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-04-17 17:32:33+02:00
log8f8f37fb0fe0ab8d98ca54ba6b51ce3d84222082
tree7768b213b0e2388b614b03fc227be89de3f82e8d
parent3be6809e27e2b7a2beb657f8e20a3a47a1bcfe48

test: Add powerpc-linux-gnueabi(hf) to the module test matrix.

Skips std tests for now: https://github.com/ziglang/zig/issues/2256

1 files changed, 20 insertions(+), 9 deletions(-)

test/tests.zig+20-9
......@@ -716,15 +716,26 @@ const test_targets = blk: {
716716 },
717717 .link_libc = true,
718718 },
719 // https://github.com/ziglang/zig/issues/2256
720 //.{
721 // .target = .{
722 // .cpu_arch = .powerpc,
723 // .os_tag = .linux,
724 // .abi = .gnueabihf,
725 // },
726 // .link_libc = true,
727 //},
719 .{
720 .target = .{
721 .cpu_arch = .powerpc,
722 .os_tag = .linux,
723 .abi = .gnueabi,
724 },
725 .link_libc = true,
726 // https://github.com/ziglang/zig/issues/2256
727 .skip_modules = &.{"std"},
728 },
729 .{
730 .target = .{
731 .cpu_arch = .powerpc,
732 .os_tag = .linux,
733 .abi = .gnueabihf,
734 },
735 .link_libc = true,
736 // https://github.com/ziglang/zig/issues/2256
737 .skip_modules = &.{"std"},
738 },
728739
729740 .{
730741 .target = .{