re-enable all the MIPS tests

LLVM 12.0.1 fixed the regressions from LLVM 12.0.0.

Closes #8155
This commit is contained in:
Andrew Kelley 2021-08-31 10:36:33 -07:00
parent b25e58b0ac
commit d0f04824f1

View File

@ -160,24 +160,22 @@ const test_targets = blk: {
// .link_libc = true,
//},
// https://github.com/ziglang/zig/issues/8155
//TestTarget{
// .target = .{
// .cpu_arch = .mips,
// .os_tag = .linux,
// .abi = .none,
// },
//},
TestTarget{
.target = .{
.cpu_arch = .mips,
.os_tag = .linux,
.abi = .none,
},
},
// https://github.com/ziglang/zig/issues/8155
//TestTarget{
// .target = .{
// .cpu_arch = .mips,
// .os_tag = .linux,
// .abi = .musl,
// },
// .link_libc = true,
//},
TestTarget{
.target = .{
.cpu_arch = .mips,
.os_tag = .linux,
.abi = .musl,
},
.link_libc = true,
},
// https://github.com/ziglang/zig/issues/4927
//TestTarget{
@ -189,24 +187,22 @@ const test_targets = blk: {
// .link_libc = true,
//},
// https://github.com/ziglang/zig/issues/8155
//TestTarget{
// .target = .{
// .cpu_arch = .mipsel,
// .os_tag = .linux,
// .abi = .none,
// },
//},
TestTarget{
.target = .{
.cpu_arch = .mipsel,
.os_tag = .linux,
.abi = .none,
},
},
// https://github.com/ziglang/zig/issues/8155
//TestTarget{
// .target = .{
// .cpu_arch = .mipsel,
// .os_tag = .linux,
// .abi = .musl,
// },
// .link_libc = true,
//},
TestTarget{
.target = .{
.cpu_arch = .mipsel,
.os_tag = .linux,
.abi = .musl,
},
.link_libc = true,
},
// https://github.com/ziglang/zig/issues/4927
//TestTarget{