authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-08-31 10:36:33-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-08-31 10:36:33-07:00
logd0f04824f1d1a34cbc6e4bdee36893482d5e866d
tree180596b1e14d16828187f5131a5e311a8c4a1f90
parentb25e58b0acb3153814c96161f5d6bc1fa3316800

re-enable all the MIPS tests

LLVM 12.0.1 fixed the regressions from LLVM 12.0.0. Closes #8155

1 files changed, 30 insertions(+), 34 deletions(-)

test/tests.zig+30-34
...@@ -160,24 +160,22 @@ const test_targets = blk: {...@@ -160,24 +160,22 @@ const test_targets = blk: {
160 // .link_libc = true,160 // .link_libc = true,
161 //},161 //},
162162
163 // https://github.com/ziglang/zig/issues/8155163 TestTarget{
164 //TestTarget{164 .target = .{
165 // .target = .{165 .cpu_arch = .mips,
166 // .cpu_arch = .mips,166 .os_tag = .linux,
167 // .os_tag = .linux,167 .abi = .none,
168 // .abi = .none,168 },
169 // },169 },
170 //},
171170
172 // https://github.com/ziglang/zig/issues/8155171 TestTarget{
173 //TestTarget{172 .target = .{
174 // .target = .{173 .cpu_arch = .mips,
175 // .cpu_arch = .mips,174 .os_tag = .linux,
176 // .os_tag = .linux,175 .abi = .musl,
177 // .abi = .musl,176 },
178 // },177 .link_libc = true,
179 // .link_libc = true,178 },
180 //},
181179
182 // https://github.com/ziglang/zig/issues/4927180 // https://github.com/ziglang/zig/issues/4927
183 //TestTarget{181 //TestTarget{
...@@ -189,24 +187,22 @@ const test_targets = blk: {...@@ -189,24 +187,22 @@ const test_targets = blk: {
189 // .link_libc = true,187 // .link_libc = true,
190 //},188 //},
191189
192 // https://github.com/ziglang/zig/issues/8155190 TestTarget{
193 //TestTarget{191 .target = .{
194 // .target = .{192 .cpu_arch = .mipsel,
195 // .cpu_arch = .mipsel,193 .os_tag = .linux,
196 // .os_tag = .linux,194 .abi = .none,
197 // .abi = .none,195 },
198 // },196 },
199 //},
200197
201 // https://github.com/ziglang/zig/issues/8155198 TestTarget{
202 //TestTarget{199 .target = .{
203 // .target = .{200 .cpu_arch = .mipsel,
204 // .cpu_arch = .mipsel,201 .os_tag = .linux,
205 // .os_tag = .linux,202 .abi = .musl,
206 // .abi = .musl,203 },
207 // },204 .link_libc = true,
208 // .link_libc = true,205 },
209 //},
210206
211 // https://github.com/ziglang/zig/issues/4927207 // https://github.com/ziglang/zig/issues/4927
212 //TestTarget{208 //TestTarget{