authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-04-07 18:15:59+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-04-11 02:29:27+02:00
logd01f2aa6e768c8389b622898ffd845c9b7138084
tree63ec48a9601e56d50037413e692097b20dcd9c4b
parent01b5e8b296e0b68f8bc90b3779e1543e3e14a8ed
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

test: Add hexagon-linux-(none,musl) to the test matrix.

This skips std tests for now: https://github.com/llvm/llvm-project/pull/111217

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

test/tests.zig+20
......@@ -497,6 +497,26 @@ const test_targets = blk: {
497497 .pic = false, // Long calls don't work with PIC.
498498 },
499499
500 .{
501 .target = .{
502 .cpu_arch = .hexagon,
503 .os_tag = .linux,
504 .abi = .none,
505 },
506 // https://github.com/llvm/llvm-project/pull/111217
507 .skip_modules = &.{"std"},
508 },
509 .{
510 .target = .{
511 .cpu_arch = .hexagon,
512 .os_tag = .linux,
513 .abi = .musl,
514 },
515 .link_libc = true,
516 // https://github.com/llvm/llvm-project/pull/111217
517 .skip_modules = &.{"std"},
518 },
519
500520 .{
501521 .target = .{
502522 .cpu_arch = .loongarch64,