Commit 3e8ac8e23f
Changed files (1)
test
test/tests.zig
@@ -365,6 +365,54 @@ const test_targets = blk: {
.slow_backend = true,
},
+ .{
+ .target = .{
+ .cpu_arch = .mips64,
+ .os_tag = .linux,
+ .abi = .none,
+ },
+ },
+ .{
+ .target = .{
+ .cpu_arch = .mips64,
+ .os_tag = .linux,
+ .abi = .musl,
+ },
+ .link_libc = true,
+ },
+ .{
+ .target = .{
+ .cpu_arch = .mips64,
+ .os_tag = .linux,
+ .abi = .gnuabi64,
+ },
+ .link_libc = true,
+ },
+
+ .{
+ .target = .{
+ .cpu_arch = .mips64el,
+ .os_tag = .linux,
+ .abi = .none,
+ },
+ },
+ .{
+ .target = .{
+ .cpu_arch = .mips64el,
+ .os_tag = .linux,
+ .abi = .musl,
+ },
+ .link_libc = true,
+ },
+ .{
+ .target = .{
+ .cpu_arch = .mips64el,
+ .os_tag = .linux,
+ .abi = .gnuabi64,
+ },
+ .link_libc = true,
+ },
+
.{
.target = .{
.cpu_arch = .powerpc,