From c3734450bcb70354470e95478aad0cb1c5907774 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Tue, 6 May 2025 05:37:39 +0200 Subject: [PATCH] test: Add MIPS N32 targets to the module test matrix. --- test/tests.zig | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/test/tests.zig b/test/tests.zig index f5245f4e4d..e6401551da 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -822,6 +822,24 @@ const test_targets = blk: { .link_libc = true, .extra_target = true, }, + .{ + .target = .{ + .cpu_arch = .mips64, + .os_tag = .linux, + .abi = .muslabin32, + }, + .link_libc = true, + }, + .{ + .target = .{ + .cpu_arch = .mips64, + .os_tag = .linux, + .abi = .muslabin32, + }, + .linkage = .dynamic, + .link_libc = true, + .extra_target = true, + }, .{ .target = .{ .cpu_arch = .mips64, @@ -830,6 +848,14 @@ const test_targets = blk: { }, .link_libc = true, }, + .{ + .target = .{ + .cpu_arch = .mips64, + .os_tag = .linux, + .abi = .gnuabin32, + }, + .link_libc = true, + }, .{ .target = .{ @@ -856,6 +882,24 @@ const test_targets = blk: { .link_libc = true, .extra_target = true, }, + .{ + .target = .{ + .cpu_arch = .mips64el, + .os_tag = .linux, + .abi = .muslabin32, + }, + .link_libc = true, + }, + .{ + .target = .{ + .cpu_arch = .mips64el, + .os_tag = .linux, + .abi = .muslabin32, + }, + .linkage = .dynamic, + .link_libc = true, + .extra_target = true, + }, .{ .target = .{ .cpu_arch = .mips64el, @@ -864,6 +908,14 @@ const test_targets = blk: { }, .link_libc = true, }, + .{ + .target = .{ + .cpu_arch = .mips64el, + .os_tag = .linux, + .abi = .gnuabin32, + }, + .link_libc = true, + }, .{ .target = .{