zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit f8439805d7d9ab64f34e97272ac13bdd21c7401e (tree)
parent 1cab57f361b835eb164e88175dc10cbad5cfab4b
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Mon,  7 Apr 2025 16:02:49 +0200

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

Currently skips std tests which have many issues.

Diffstat:
Mtest/tests.zig | 27+++++++++++++++++++++++++++
1 file changed, 27 insertions(+), 0 deletions(-)

diff --git a/test/tests.zig b/test/tests.zig @@ -499,6 +499,33 @@ const test_targets = blk: { .{ .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, .os_tag = .linux, .abi = .eabi,