authorgravatar for thatlemon@gmail.comLemonBoy <thatlemon@gmail.com> 2021-04-20 22:08:19+02:00
committergravatar for thatlemon@gmail.comLemonBoy <thatlemon@gmail.com> 2021-04-21 16:31:30+02:00
log89d0cc4d8c222321939a87ede1cf7e4c6656d4cf
treea65bd5a5ff93a50a11014c2d849c75e216f9fa5e
parente4f9a3041af7fc0c8fceb0bf15b14b51d54d3869

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.

1 files changed, 16 insertions(+), 0 deletions(-)

test/tests.zig+16
...@@ -212,6 +212,22 @@ const test_targets = blk: {...@@ -212,6 +212,22 @@ const test_targets = blk: {
212 // .link_libc = true,212 // .link_libc = true,
213 //},213 //},
214214
215 TestTarget{
216 .target = .{
217 .cpu_arch = .powerpc,
218 .os_tag = .linux,
219 .abi = .none,
220 },
221 },
222 TestTarget{
223 .target = .{
224 .cpu_arch = .powerpc,
225 .os_tag = .linux,
226 .abi = .musl,
227 },
228 .link_libc = true,
229 },
230
215 TestTarget{231 TestTarget{
216 .target = .{232 .target = .{
217 .cpu_arch = .riscv64,233 .cpu_arch = .riscv64,