Skip to content

Commit 8f8f37f

Browse files
committed
test: Add powerpc-linux-gnueabi(hf) to the module test matrix.
Skips std tests for now: #2256
1 parent 3be6809 commit 8f8f37f

File tree

1 file changed

+20
-9
lines changed

1 file changed

+20
-9
lines changed

test/tests.zig

+20-9
Original file line numberDiff line numberDiff line change
@@ -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 = .{

0 commit comments

Comments
 (0)