test: Add aarch64_be-linux-(none,gnu,musl) to module tests.
1 files changed, 24 insertions(+), 0 deletions(-)
test
test/tests.zig+24
| ... | ... | @@ -291,6 +291,30 @@ const test_targets = blk: { |
| 291 | 291 | .link_libc = true, |
| 292 | 292 | }, |
| 293 | 293 | |
| 294 | .{ |
| 295 | .target = .{ |
| 296 | .cpu_arch = .aarch64_be, |
| 297 | .os_tag = .linux, |
| 298 | .abi = .none, |
| 299 | }, |
| 300 | }, |
| 301 | .{ |
| 302 | .target = .{ |
| 303 | .cpu_arch = .aarch64_be, |
| 304 | .os_tag = .linux, |
| 305 | .abi = .musl, |
| 306 | }, |
| 307 | .link_libc = true, |
| 308 | }, |
| 309 | .{ |
| 310 | .target = .{ |
| 311 | .cpu_arch = .aarch64_be, |
| 312 | .os_tag = .linux, |
| 313 | .abi = .gnu, |
| 314 | }, |
| 315 | .link_libc = true, |
| 316 | }, |
| 317 | |
| 294 | 318 | .{ |
| 295 | 319 | .target = .{ |
| 296 | 320 | .cpu_arch = .arm, |