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: {...@@ -716,15 +716,26 @@ const test_targets = blk: {
716 },716 },
717 .link_libc = true,717 .link_libc = true,
718 },718 },
719 // https://github.com/ziglang/zig/issues/2256719 .{
720 //.{720 .target = .{
721 // .target = .{721 .cpu_arch = .powerpc,
722 // .cpu_arch = .powerpc,722 .os_tag = .linux,
723 // .os_tag = .linux,723 .abi = .gnueabi,
724 // .abi = .gnueabihf,724 },
725 // },725 .link_libc = true,
726 // .link_libc = true,726 // https://github.com/ziglang/zig/issues/2256
727 //},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
729 .{740 .{
730 .target = .{741 .target = .{