From 89d0cc4d8c222321939a87ede1cf7e4c6656d4cf Mon Sep 17 00:00:00 2001 From: LemonBoy Date: Tue, 20 Apr 2021 22:08:19 +0200 Subject: 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. --- test/tests.zig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'test/tests.zig') diff --git a/test/tests.zig b/test/tests.zig index be8d8d0a3f..7cdf83f2cd 100644 --- a/test/tests.zig +++ b/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, -- cgit v1.2.3