commit 89d0cc4d8c222321939a87ede1cf7e4c6656d4cf (tree)
parent e4f9a3041af7fc0c8fceb0bf15b14b51d54d3869
Author: LemonBoy <thatlemon@gmail.com>
Date: Tue, 20 Apr 2021 22:08:19 +0200
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.
Diffstat:
1 file changed, 16 insertions(+), 0 deletions(-)
diff --git a/test/tests.zig b/test/tests.zig
@@ -214,6 +214,22 @@ const test_targets = blk: {
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,
.os_tag = .linux,
.abi = .none,