Skip to content

Commit f843980

Browse files
committed
test: Add loongarch64-linux-(none,musl,gnu) to the test matrix.
Currently skips std tests which have many issues.
1 parent 1cab57f commit f843980

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

test/tests.zig

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -497,6 +497,33 @@ const test_targets = blk: {
497497
.pic = false, // Long calls don't work with PIC.
498498
},
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+
500527
.{
501528
.target = .{
502529
.cpu_arch = .mips,

0 commit comments

Comments
 (0)