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 13:44:57-07:00
logf7e08ea780e6bbd92ee5472dca14348a251271cf
tree089b0c722ade20bf67617fbd9544aa95af7af8cd
parenta1d532752f5c2f41a9cb21d9a06c9bf3b1bd8adc

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
......@@ -153,24 +153,22 @@ const test_targets = blk: {
153153 // .link_libc = true,
154154 //},
155155
156 // https://github.com/ziglang/zig/issues/8155
157 //TestTarget{
158 // .target = .{
159 // .cpu_arch = .mips,
160 // .os_tag = .linux,
161 // .abi = .none,
162 // },
163 //},
156 TestTarget{
157 .target = .{
158 .cpu_arch = .mips,
159 .os_tag = .linux,
160 .abi = .none,
161 },
162 },
164163
165 // https://github.com/ziglang/zig/issues/8155
166 //TestTarget{
167 // .target = .{
168 // .cpu_arch = .mips,
169 // .os_tag = .linux,
170 // .abi = .musl,
171 // },
172 // .link_libc = true,
173 //},
164 TestTarget{
165 .target = .{
166 .cpu_arch = .mips,
167 .os_tag = .linux,
168 .abi = .musl,
169 },
170 .link_libc = true,
171 },
174172
175173 // https://github.com/ziglang/zig/issues/4927
176174 //TestTarget{
......@@ -182,24 +180,22 @@ const test_targets = blk: {
182180 // .link_libc = true,
183181 //},
184182
185 // https://github.com/ziglang/zig/issues/8155
186 //TestTarget{
187 // .target = .{
188 // .cpu_arch = .mipsel,
189 // .os_tag = .linux,
190 // .abi = .none,
191 // },
192 //},
183 TestTarget{
184 .target = .{
185 .cpu_arch = .mipsel,
186 .os_tag = .linux,
187 .abi = .none,
188 },
189 },
193190
194 // https://github.com/ziglang/zig/issues/8155
195 //TestTarget{
196 // .target = .{
197 // .cpu_arch = .mipsel,
198 // .os_tag = .linux,
199 // .abi = .musl,
200 // },
201 // .link_libc = true,
202 //},
191 TestTarget{
192 .target = .{
193 .cpu_arch = .mipsel,
194 .os_tag = .linux,
195 .abi = .musl,
196 },
197 .link_libc = true,
198 },
203199
204200 // https://github.com/ziglang/zig/issues/4927
205201 //TestTarget{