motiejus/zig

fork of https://codeberg.org/ziglang/zig
git clone https://git.jakstys.lt/motiejus/zig.git
Log | Tree | Refs | README | LICENSE

commit 9aa4cf4f8895fe1e61ec92e97c6255df0a58f88e (tree)
parent fdc0ed92ce839f7532bff94d9c8127b07e8161d0
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Sun,  3 Nov 2024 07:58:49 +0100

test: Add aarch64_be-linux-* to the module test matrix.

Diffstat:
Mtest/tests.zig | 24++++++++++++++++++++++++
1 file changed, 24 insertions(+), 0 deletions(-)

diff --git a/test/tests.zig b/test/tests.zig @@ -309,6 +309,30 @@ const test_targets = blk: { .{ .target = .{ + .cpu_arch = .aarch64_be, + .os_tag = .linux, + .abi = .none, + }, + }, + .{ + .target = .{ + .cpu_arch = .aarch64_be, + .os_tag = .linux, + .abi = .musl, + }, + .link_libc = true, + }, + .{ + .target = .{ + .cpu_arch = .aarch64_be, + .os_tag = .linux, + .abi = .gnu, + }, + .link_libc = true, + }, + + .{ + .target = .{ .cpu_arch = .arm, .os_tag = .linux, .abi = .eabi,