zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

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

test: Add aarch64_be-linux-(none,gnu,musl) to module tests.

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

diff --git a/test/tests.zig b/test/tests.zig @@ -293,6 +293,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,