Skip to content

Commit c373445

Browse files
committed
test: Add MIPS N32 targets to the module test matrix.
1 parent 473f36d commit c373445

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

test/tests.zig

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -822,6 +822,24 @@ const test_targets = blk: {
822822
.link_libc = true,
823823
.extra_target = true,
824824
},
825+
.{
826+
.target = .{
827+
.cpu_arch = .mips64,
828+
.os_tag = .linux,
829+
.abi = .muslabin32,
830+
},
831+
.link_libc = true,
832+
},
833+
.{
834+
.target = .{
835+
.cpu_arch = .mips64,
836+
.os_tag = .linux,
837+
.abi = .muslabin32,
838+
},
839+
.linkage = .dynamic,
840+
.link_libc = true,
841+
.extra_target = true,
842+
},
825843
.{
826844
.target = .{
827845
.cpu_arch = .mips64,
@@ -830,6 +848,14 @@ const test_targets = blk: {
830848
},
831849
.link_libc = true,
832850
},
851+
.{
852+
.target = .{
853+
.cpu_arch = .mips64,
854+
.os_tag = .linux,
855+
.abi = .gnuabin32,
856+
},
857+
.link_libc = true,
858+
},
833859

834860
.{
835861
.target = .{
@@ -856,6 +882,24 @@ const test_targets = blk: {
856882
.link_libc = true,
857883
.extra_target = true,
858884
},
885+
.{
886+
.target = .{
887+
.cpu_arch = .mips64el,
888+
.os_tag = .linux,
889+
.abi = .muslabin32,
890+
},
891+
.link_libc = true,
892+
},
893+
.{
894+
.target = .{
895+
.cpu_arch = .mips64el,
896+
.os_tag = .linux,
897+
.abi = .muslabin32,
898+
},
899+
.linkage = .dynamic,
900+
.link_libc = true,
901+
.extra_target = true,
902+
},
859903
.{
860904
.target = .{
861905
.cpu_arch = .mips64el,
@@ -864,6 +908,14 @@ const test_targets = blk: {
864908
},
865909
.link_libc = true,
866910
},
911+
.{
912+
.target = .{
913+
.cpu_arch = .mips64el,
914+
.os_tag = .linux,
915+
.abi = .gnuabin32,
916+
},
917+
.link_libc = true,
918+
},
867919

868920
.{
869921
.target = .{

0 commit comments

Comments
 (0)