authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-08-13 11:48:33-07:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2024-08-13 11:48:33-07:00
log0b5ea2b902b5802786cac70740e93872d2a0973d
tree640122a7fcaf181a2e4e97eadb4968a03a903508
parent76f062690c3373b24170e3e1d7dd62735eb9685e
parent46f64358dd731ad35afe11a6a45df1ad78e6531a
signaturebadge-check Signed by PGP key B5690EEEBB952194

Merge pull request #21053 from alexrp/mips-tests

`test`: Re-enable `mips(el)-linux(-musl)` tests.

3 files changed, 34 insertions(+), 34 deletions(-)

test/behavior/union.zig+1
......@@ -1904,6 +1904,7 @@ test "reinterpret packed union" {
19041904
19051905 if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
19061906 if (builtin.cpu.arch.isPowerPC32()) return error.SkipZigTest; // TODO
1907 if (builtin.cpu.arch.isMIPS()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21050
19071908 if (builtin.cpu.arch.isWasm()) return error.SkipZigTest; // TODO
19081909 try S.doTheTest();
19091910}
test/behavior/vector.zig+3
......@@ -133,6 +133,9 @@ test "vector float operators" {
133133 try S.doTheTest(f16);
134134 try comptime S.doTheTest(f16);
135135
136 // https://github.com/llvm/llvm-project/issues/102870
137 if (builtin.cpu.arch.isMIPS()) return error.SkipZigTest;
138
136139 try S.doTheTest(f80);
137140 try comptime S.doTheTest(f80);
138141
test/tests.zig+30-34
......@@ -304,24 +304,22 @@ const test_targets = blk: {
304304 .link_libc = true,
305305 },
306306
307 // https://github.com/ziglang/zig/issues/16846
308 //.{
309 // .target = .{
310 // .cpu_arch = .mips,
311 // .os_tag = .linux,
312 // .abi = .none,
313 // },
314 //},
307 .{
308 .target = .{
309 .cpu_arch = .mips,
310 .os_tag = .linux,
311 .abi = .none,
312 },
313 },
315314
316 // https://github.com/ziglang/zig/issues/16846
317 //.{
318 // .target = .{
319 // .cpu_arch = .mips,
320 // .os_tag = .linux,
321 // .abi = .musl,
322 // },
323 // .link_libc = true,
324 //},
315 .{
316 .target = .{
317 .cpu_arch = .mips,
318 .os_tag = .linux,
319 .abi = .musl,
320 },
321 .link_libc = true,
322 },
325323
326324 // https://github.com/ziglang/zig/issues/4927
327325 //.{
......@@ -333,24 +331,22 @@ const test_targets = blk: {
333331 // .link_libc = true,
334332 //},
335333
336 // https://github.com/ziglang/zig/issues/16846
337 //.{
338 // .target = .{
339 // .cpu_arch = .mipsel,
340 // .os_tag = .linux,
341 // .abi = .none,
342 // },
343 //},
334 .{
335 .target = .{
336 .cpu_arch = .mipsel,
337 .os_tag = .linux,
338 .abi = .none,
339 },
340 },
344341
345 // https://github.com/ziglang/zig/issues/16846
346 //.{
347 // .target = .{
348 // .cpu_arch = .mipsel,
349 // .os_tag = .linux,
350 // .abi = .musl,
351 // },
352 // .link_libc = true,
353 //},
342 .{
343 .target = .{
344 .cpu_arch = .mipsel,
345 .os_tag = .linux,
346 .abi = .musl,
347 },
348 .link_libc = true,
349 },
354350
355351 // https://github.com/ziglang/zig/issues/4927
356352 //.{