diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2024-11-03 07:58:49 +0100 |
|---|---|---|
| committer | Alex Rønne Petersen <alex@alexrp.com> | 2024-11-04 08:29:42 +0100 |
| commit | 4049be90de6a557c1ab522363fddbb71d3ccdb18 (patch) | |
| tree | 8b86dd349d500e5898e189835f044ebf01596e0d /test | |
| parent | 9d0bb7ada81f91d16d985340ab8d9fe98ad40565 (diff) | |
| download | zig-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.zig | 24 |
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, |
