diff --git a/build.zig b/build.zig index c87f019410e38bec66fd4944b820d7ad36d29c24..2348e1e7ec4bc9ff568f5933310cbaf7a3529c7f 100644 --- a/build.zig +++ b/build.zig @@ -33,6 +33,7 @@ pub fn build(b: *std.Build) void { tests.use_lld = !disable_llvm; const run_test = b.addRunArtifact(tests); + run_test.setCwd(b.path(".")); run_test.has_side_effects = true; const test_step = b.step("test", "Run all library tests");