diff --git a/build.zig b/build.zig index e1ab3875c409aee5b8d0214b98a7f1f5b0115dbd..23f547bfaee0316f4df2eba38110999bd4a331b7 100644 --- a/build.zig +++ b/build.zig @@ -18,6 +18,7 @@ pub fn build(b: *std.Build) void { tests.root_module.link_libc = true; tests.use_llvm = !disable_llvm; tests.use_lld = !disable_llvm; + b.getInstallStep().dependOn(&tests.step); const test_step = b.step("test", "Run all library tests"); const tests_run = b.addRunArtifact(tests);