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

Currently skips std tests which have many issues.
This commit is contained in:
Alex Rønne Petersen 2025-04-07 16:02:49 +02:00
parent 1cab57f361
commit f8439805d7
No known key found for this signature in database

View file

@ -497,6 +497,33 @@ const test_targets = blk: {
.pic = false, // Long calls don't work with PIC.
},
.{
.target = .{
.cpu_arch = .loongarch64,
.os_tag = .linux,
.abi = .none,
},
.skip_modules = &.{"std"},
},
.{
.target = .{
.cpu_arch = .loongarch64,
.os_tag = .linux,
.abi = .musl,
},
.link_libc = true,
.skip_modules = &.{"std"},
},
.{
.target = .{
.cpu_arch = .loongarch64,
.os_tag = .linux,
.abi = .gnu,
},
.link_libc = true,
.skip_modules = &.{"std"},
},
.{
.target = .{
.cpu_arch = .mips,