Commit 9aa4cf4f88

Alex Rønne Petersen <alex@alexrp.com>
2024-11-03 07:58:49
test: Add aarch64_be-linux-* to the module test matrix.
1 parent fdc0ed9
Changed files (1)
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,