Skip to content

Commit 69eacc7

Browse files
committed
test: Add hexagon-linux-(none,musl) to the test matrix.
This skips std tests for now: llvm/llvm-project#111217
1 parent ccd0454 commit 69eacc7

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

test/tests.zig

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

0 commit comments

Comments
 (0)