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: {...@@ -153,24 +153,22 @@ const test_targets = blk: {
153 // .link_libc = true,153 // .link_libc = true,
154 //},154 //},
155155
156 // https://github.com/ziglang/zig/issues/8155156 TestTarget{
157 //TestTarget{157 .target = .{
158 // .target = .{158 .cpu_arch = .mips,
159 // .cpu_arch = .mips,159 .os_tag = .linux,
160 // .os_tag = .linux,160 .abi = .none,
161 // .abi = .none,161 },
162 // },162 },
163 //},
164163
165 // https://github.com/ziglang/zig/issues/8155164 TestTarget{
166 //TestTarget{165 .target = .{
167 // .target = .{166 .cpu_arch = .mips,
168 // .cpu_arch = .mips,167 .os_tag = .linux,
169 // .os_tag = .linux,168 .abi = .musl,
170 // .abi = .musl,169 },
171 // },170 .link_libc = true,
172 // .link_libc = true,171 },
173 //},
174172
175 // https://github.com/ziglang/zig/issues/4927173 // https://github.com/ziglang/zig/issues/4927
176 //TestTarget{174 //TestTarget{
...@@ -182,24 +180,22 @@ const test_targets = blk: {...@@ -182,24 +180,22 @@ const test_targets = blk: {
182 // .link_libc = true,180 // .link_libc = true,
183 //},181 //},
184182
185 // https://github.com/ziglang/zig/issues/8155183 TestTarget{
186 //TestTarget{184 .target = .{
187 // .target = .{185 .cpu_arch = .mipsel,
188 // .cpu_arch = .mipsel,186 .os_tag = .linux,
189 // .os_tag = .linux,187 .abi = .none,
190 // .abi = .none,188 },
191 // },189 },
192 //},
193190
194 // https://github.com/ziglang/zig/issues/8155191 TestTarget{
195 //TestTarget{192 .target = .{
196 // .target = .{193 .cpu_arch = .mipsel,
197 // .cpu_arch = .mipsel,194 .os_tag = .linux,
198 // .os_tag = .linux,195 .abi = .musl,
199 // .abi = .musl,196 },
200 // },197 .link_libc = true,
201 // .link_libc = true,198 },
202 //},
203199
204 // https://github.com/ziglang/zig/issues/4927200 // https://github.com/ziglang/zig/issues/4927
205 //TestTarget{201 //TestTarget{