From d01f2aa6e768c8389b622898ffd845c9b7138084 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Mon, 7 Apr 2025 18:15:59 +0200 Subject: [PATCH] test: Add hexagon-linux-(none,musl) to the test matrix. This skips std tests for now: https://github.com/llvm/llvm-project/pull/111217 --- test/tests.zig | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/test/tests.zig b/test/tests.zig index ef2cb6127f..60623c2574 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,