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
test/tests.zig+16
| ... | ... | @@ -212,6 +212,22 @@ const test_targets = blk: { |
| 212 | 212 | // .link_libc = true, |
| 213 | 213 | //}, |
| 214 | 214 | |
| 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 | 231 | TestTarget{ |
| 216 | 232 | .target = .{ |
| 217 | 233 | .cpu_arch = .riscv64, |