test: Add 32bit PowerPC to the test plan

Since MIPS is temporarily out of order due to some issues with LLD let's
add PPC32 to have at least one big-endian platform in the testing plan.
This commit is contained in:
LemonBoy 2021-04-20 22:08:19 +02:00
parent e4f9a3041a
commit 89d0cc4d8c

View File

@ -212,6 +212,22 @@ const test_targets = blk: {
// .link_libc = true,
//},
TestTarget{
.target = .{
.cpu_arch = .powerpc,
.os_tag = .linux,
.abi = .none,
},
},
TestTarget{
.target = .{
.cpu_arch = .powerpc,
.os_tag = .linux,
.abi = .musl,
},
.link_libc = true,
},
TestTarget{
.target = .{
.cpu_arch = .riscv64,