diff options
| author | LemonBoy <thatlemon@gmail.com> | 2021-04-20 22:08:19 +0200 |
|---|---|---|
| committer | LemonBoy <thatlemon@gmail.com> | 2021-04-21 16:31:30 +0200 |
| commit | 89d0cc4d8c222321939a87ede1cf7e4c6656d4cf (patch) | |
| tree | a65bd5a5ff93a50a11014c2d849c75e216f9fa5e /test/tests.zig | |
| parent | e4f9a3041af7fc0c8fceb0bf15b14b51d54d3869 (diff) | |
| download | zig-89d0cc4d8c222321939a87ede1cf7e4c6656d4cf.tar.gz zig-89d0cc4d8c222321939a87ede1cf7e4c6656d4cf.zip | |
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 (limited to 'test/tests.zig')
| -rw-r--r-- | test/tests.zig | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/tests.zig b/test/tests.zig index be8d8d0a3f..7cdf83f2cd 100644 --- 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, |
