diff --git a/build.zig b/build.zig index e118e127fc325b607a176d1777cf40e539b8468e..d44336b41a31378fef017f08583d53b7a0d8d471 100644 --- a/build.zig +++ b/build.zig @@ -39,6 +39,7 @@ pub fn build(b: *std.Build) void { deps.addAllTo(tests); 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);