authorgravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2026-03-27 20:27:11+00:00
committergravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2026-03-28 16:50:43+00:00
log29faeeee9de95a327bbb864dd861f15386c4ccff
treec7563e224f05fe1b62ffa7939e44a5a0a28be0c4
parentfca3f6f62e515669cb3aa22b8512e2cc4e1994f2
signaturelock-open Commit is signed but in an unrecognized format.

tests: fix passing -fno-builtin to module tests


1 files changed, 1 insertions(+), 1 deletions(-)

test/tests.zig+1-1
......@@ -2487,7 +2487,7 @@ fn addOneModuleTest(
24872487 .zig_lib_dir = b.path("lib"),
24882488 });
24892489 these_tests.linkage = test_target.linkage;
2490 if (options.no_builtin) these_tests.root_module.no_builtin = false;
2490 if (options.no_builtin) these_tests.root_module.no_builtin = true;
24912491 if (options.build_options) |build_options| {
24922492 these_tests.root_module.addOptions("build_options", build_options);
24932493 }