From 8f8f37fb0fe0ab8d98ca54ba6b51ce3d84222082 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Thu, 17 Apr 2025 02:52:12 +0200 Subject: [PATCH] test: Add powerpc-linux-gnueabi(hf) to the module test matrix. Skips std tests for now: https://github.com/ziglang/zig/issues/2256 --- test/tests.zig | 29 ++++++++++++++++++++--------- 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/test/tests.zig b/test/tests.zig index 5b930a622c..ee12cc60fc 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -716,15 +716,26 @@ const test_targets = blk: { }, .link_libc = true, }, - // https://github.com/ziglang/zig/issues/2256 - //.{ - // .target = .{ - // .cpu_arch = .powerpc, - // .os_tag = .linux, - // .abi = .gnueabihf, - // }, - // .link_libc = true, - //}, + .{ + .target = .{ + .cpu_arch = .powerpc, + .os_tag = .linux, + .abi = .gnueabi, + }, + .link_libc = true, + // https://github.com/ziglang/zig/issues/2256 + .skip_modules = &.{"std"}, + }, + .{ + .target = .{ + .cpu_arch = .powerpc, + .os_tag = .linux, + .abi = .gnueabihf, + }, + .link_libc = true, + // https://github.com/ziglang/zig/issues/2256 + .skip_modules = &.{"std"}, + }, .{ .target = .{