From f8439805d7d9ab64f34e97272ac13bdd21c7401e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Mon, 7 Apr 2025 16:02:49 +0200 Subject: [PATCH] test: Add loongarch64-linux-(none,musl,gnu) to the test matrix. Currently skips std tests which have many issues. --- test/tests.zig | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/test/tests.zig b/test/tests.zig index 0944c2a77d..43a631512d 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -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,