authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-04-07 16:02:49+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-04-07 16:03:22+02:00
logf8439805d7d9ab64f34e97272ac13bdd21c7401e
treeea4e3d16e25e53d6e1b27d01b6018f3ff9b5074d
parent1cab57f361b835eb164e88175dc10cbad5cfab4b
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

test: Add loongarch64-linux-(none,musl,gnu) to the test matrix.

Currently skips std tests which have many issues.

1 files changed, 27 insertions(+), 0 deletions(-)

test/tests.zig+27
...@@ -497,6 +497,33 @@ const test_targets = blk: {...@@ -497,6 +497,33 @@ const test_targets = blk: {
497 .pic = false, // Long calls don't work with PIC.497 .pic = false, // Long calls don't work with PIC.
498 },498 },
499499
500 .{
501 .target = .{
502 .cpu_arch = .loongarch64,
503 .os_tag = .linux,
504 .abi = .none,
505 },
506 .skip_modules = &.{"std"},
507 },
508 .{
509 .target = .{
510 .cpu_arch = .loongarch64,
511 .os_tag = .linux,
512 .abi = .musl,
513 },
514 .link_libc = true,
515 .skip_modules = &.{"std"},
516 },
517 .{
518 .target = .{
519 .cpu_arch = .loongarch64,
520 .os_tag = .linux,
521 .abi = .gnu,
522 },
523 .link_libc = true,
524 .skip_modules = &.{"std"},
525 },
526
500 .{527 .{
501 .target = .{528 .target = .{
502 .cpu_arch = .mips,529 .cpu_arch = .mips,