Skip to content

Commit 3e8ac8e

Browse files
committed
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 parent ecbc701 commit 3e8ac8e

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

test/tests.zig

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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,

0 commit comments

Comments
 (0)