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: {
160160 // .link_libc = true,
161161 //},
162162
163 // https://github.com/ziglang/zig/issues/8155
164 //TestTarget{
165 // .target = .{
166 // .cpu_arch = .mips,
167 // .os_tag = .linux,
168 // .abi = .none,
169 // },
170 //},
163 TestTarget{
164 .target = .{
165 .cpu_arch = .mips,
166 .os_tag = .linux,
167 .abi = .none,
168 },
169 },
171170
172 // https://github.com/ziglang/zig/issues/8155
173 //TestTarget{
174 // .target = .{
175 // .cpu_arch = .mips,
176 // .os_tag = .linux,
177 // .abi = .musl,
178 // },
179 // .link_libc = true,
180 //},
171 TestTarget{
172 .target = .{
173 .cpu_arch = .mips,
174 .os_tag = .linux,
175 .abi = .musl,
176 },
177 .link_libc = true,
178 },
181179
182180 // https://github.com/ziglang/zig/issues/4927
183181 //TestTarget{
......@@ -189,24 +187,22 @@ const test_targets = blk: {
189187 // .link_libc = true,
190188 //},
191189
192 // https://github.com/ziglang/zig/issues/8155
193 //TestTarget{
194 // .target = .{
195 // .cpu_arch = .mipsel,
196 // .os_tag = .linux,
197 // .abi = .none,
198 // },
199 //},
190 TestTarget{
191 .target = .{
192 .cpu_arch = .mipsel,
193 .os_tag = .linux,
194 .abi = .none,
195 },
196 },
200197
201 // https://github.com/ziglang/zig/issues/8155
202 //TestTarget{
203 // .target = .{
204 // .cpu_arch = .mipsel,
205 // .os_tag = .linux,
206 // .abi = .musl,
207 // },
208 // .link_libc = true,
209 //},
198 TestTarget{
199 .target = .{
200 .cpu_arch = .mipsel,
201 .os_tag = .linux,
202 .abi = .musl,
203 },
204 .link_libc = true,
205 },
210206
211207 // https://github.com/ziglang/zig/issues/4927
212208 //TestTarget{