From 9aa4cf4f8895fe1e61ec92e97c6255df0a58f88e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Sun, 3 Nov 2024 07:58:49 +0100 Subject: [PATCH] test: Add aarch64_be-linux-* to the module test matrix. --- test/tests.zig | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/test/tests.zig b/test/tests.zig index fdfd550df6..6624f21545 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -307,6 +307,30 @@ const test_targets = blk: { .link_libc = true, }, + .{ + .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,