Commit 4049be90de

Alex Rønne Petersen <alex@alexrp.com>
2024-11-03 07:58:49
test: Add aarch64_be-linux-(none,gnu,musl) to module tests.
1 parent 9d0bb7a
Changed files (1)
test/tests.zig
@@ -291,6 +291,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,