zig

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

commit 1bd9f3f4f272e830d15b6207f21eb5d68f7639b0 (tree)
parent a9fbcb7c67382e59a6e9e5732d31852e3b18cb66
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Sat, 25 Apr 2026 14:35:13 +0200

test: add loongarch64-linux-(gnu,musl)sf to test-modules matrix

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

diff --git a/test/tests.zig b/test/tests.zig @@ -447,10 +447,38 @@ const module_test_targets = blk: { .target = .{ .cpu_arch = .loongarch64, .os_tag = .linux, + .abi = .muslsf, + }, + .link_libc = true, + .extra_target = true, + }, + .{ + .target = .{ + .cpu_arch = .loongarch64, + .os_tag = .linux, + .abi = .muslsf, + }, + .linkage = .dynamic, + .link_libc = true, + .extra_target = true, + }, + .{ + .target = .{ + .cpu_arch = .loongarch64, + .os_tag = .linux, .abi = .gnu, }, .link_libc = true, }, + .{ + .target = .{ + .cpu_arch = .loongarch64, + .os_tag = .linux, + .abi = .gnusf, + }, + .link_libc = true, + .extra_target = true, + }, .{ .target = .{