authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-08-16 11:24:48+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-08-18 07:27:23+02:00
log3e8ac8e23fce5f8468f54209dc9cc97c878edb9e
tree8756379fc5cbd8a3589138741e8d2244fc5dc29d
parentecbc701376c944e201ccaa24910ba1dfdcc7a4b0

test: Add `mips64(el)-linux-(none,musl,gnuabi64)` targets.

These take 3-4 minutes to run on my machine, i.e. they're not affected by the LLVM compilation speed bug that affects mips32.

1 files changed, 48 insertions(+), 0 deletions(-)

test/tests.zig+48
......@@ -365,6 +365,54 @@ const test_targets = blk: {
365365 .slow_backend = true,
366366 },
367367
368 .{
369 .target = .{
370 .cpu_arch = .mips64,
371 .os_tag = .linux,
372 .abi = .none,
373 },
374 },
375 .{
376 .target = .{
377 .cpu_arch = .mips64,
378 .os_tag = .linux,
379 .abi = .musl,
380 },
381 .link_libc = true,
382 },
383 .{
384 .target = .{
385 .cpu_arch = .mips64,
386 .os_tag = .linux,
387 .abi = .gnuabi64,
388 },
389 .link_libc = true,
390 },
391
392 .{
393 .target = .{
394 .cpu_arch = .mips64el,
395 .os_tag = .linux,
396 .abi = .none,
397 },
398 },
399 .{
400 .target = .{
401 .cpu_arch = .mips64el,
402 .os_tag = .linux,
403 .abi = .musl,
404 },
405 .link_libc = true,
406 },
407 .{
408 .target = .{
409 .cpu_arch = .mips64el,
410 .os_tag = .linux,
411 .abi = .gnuabi64,
412 },
413 .link_libc = true,
414 },
415
368416 .{
369417 .target = .{
370418 .cpu_arch = .powerpc,