authorgravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2026-04-29 20:51:36+01:00
committergravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2026-04-30 09:03:58+01:00
logc144003fca989780bb4dccefc2a289bcbfb9969b
treea0fe6f36471f1387b580bae4e792dab4a6f4f540
parent72d954e7d3cfb8b46a26d5a199a9a5ecd36d87be
signaturelock-open Commit is signed but in an unrecognized format.

tests: fix libc test with `-Dno-matrix`


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

test/tests.zig+3-1
......@@ -2465,7 +2465,9 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step {
24652465
24662466 if (options.test_only) |test_only| {
24672467 const test_target: ModuleTestTarget = switch (test_only) {
2468 .default => module_test_targets[0],
2468 .default => .{
2469 .link_libc = if (std.mem.eql(u8, options.name, "libc")) true else null,
2470 },
24692471 .fuzz => |optimize| .{
24702472 .optimize_mode = optimize,
24712473 .use_llvm = true,