zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 237e8a5a7a9b1b007f177198a52eeb99fb5d1b43 (tree)
parent 611c38e6daffc18bc044ebb1e20d161b4ef757f2
Author: mlugg <mlugg@mlugg.co.uk>
Date:   Sat, 27 Sep 2025 11:24:31 +0100

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.

Diffstat:
Mtest/tests.zig | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git 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, },