aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Rønne Petersen <alex@alexrp.com>2024-11-03 07:58:49 +0100
committerAlex Rønne Petersen <alex@alexrp.com>2024-12-13 03:13:14 +0100
commit9aa4cf4f8895fe1e61ec92e97c6255df0a58f88e (patch)
treeb779b0a54c57a6aa5190f815f075be07b98a347e
parentfdc0ed92ce839f7532bff94d9c8127b07e8161d0 (diff)
downloadzig-9aa4cf4f8895fe1e61ec92e97c6255df0a58f88e.tar.gz
zig-9aa4cf4f8895fe1e61ec92e97c6255df0a58f88e.zip
test: Add aarch64_be-linux-* to the module test matrix.
-rw-r--r--test/tests.zig24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/tests.zig b/test/tests.zig
index fdfd550df6..6624f21545 100644
--- 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,