Skip to content

Commit d0f0482

Browse files
committed
re-enable all the MIPS tests
LLVM 12.0.1 fixed the regressions from LLVM 12.0.0. Closes #8155
1 parent b25e58b commit d0f0482

File tree

1 file changed

+30
-34
lines changed

1 file changed

+30
-34
lines changed

test/tests.zig

Lines changed: 30 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -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{

0 commit comments

Comments
 (0)