diff --git a/test/tests.zig b/test/tests.zig index ef2cb6127f9ca3375eadb9422bd01596491fe7d5..60623c2574f3f4f94b6a32002d260320c55af6fa 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -497,6 +497,26 @@ const test_targets = blk: { .pic = false, // Long calls don't work with PIC. }, + .{ + .target = .{ + .cpu_arch = .hexagon, + .os_tag = .linux, + .abi = .none, + }, + // https://github.com/llvm/llvm-project/pull/111217 + .skip_modules = &.{"std"}, + }, + .{ + .target = .{ + .cpu_arch = .hexagon, + .os_tag = .linux, + .abi = .musl, + }, + .link_libc = true, + // https://github.com/llvm/llvm-project/pull/111217 + .skip_modules = &.{"std"}, + }, + .{ .target = .{ .cpu_arch = .loongarch64,