From 237e8a5a7a9b1b007f177198a52eeb99fb5d1b43 Mon Sep 17 00:00:00 2001 From: mlugg Date: Sat, 27 Sep 2025 11:24:31 +0100 Subject: [PATCH] tests: fix redundant target in matrix Because -fno-llvm is now the default on x86_64-linux, this target was exactly equivalent to one specified earlier in the matrix. This was probably just missed when doing the work to enable the self-hosted backend by default for x86_64. --- test/tests.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/test/tests.zig b/test/tests.zig index bb035747c9..318e39eb5c 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -1176,6 +1176,7 @@ const test_targets = blk: { .abi = .musl, }, .link_libc = true, + .use_llvm = true, .use_lld = false, },