aboutsummaryrefslogtreecommitdiff
path: root/test
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-11-04 08:29:42 +0100
commit4049be90de6a557c1ab522363fddbb71d3ccdb18 (patch)
tree8b86dd349d500e5898e189835f044ebf01596e0d /test
parent9d0bb7ada81f91d16d985340ab8d9fe98ad40565 (diff)
downloadzig-4049be90de6a557c1ab522363fddbb71d3ccdb18.tar.gz
zig-4049be90de6a557c1ab522363fddbb71d3ccdb18.zip
test: Add aarch64_be-linux-(none,gnu,musl) to module tests.
Diffstat (limited to 'test')
-rw-r--r--test/tests.zig24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/tests.zig b/test/tests.zig
index d7b36f522b..85cbc63105 100644
--- 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,