Commit 89d0cc4d8c

LemonBoy <thatlemon@gmail.com>
2021-04-20 22:08:19
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 parent e4f9a30
Changed files (1)
test/tests.zig
@@ -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,