| ... | @@ -21,6 +21,7 @@ pub fn build(b: *std.Build) void { | ... | @@ -21,6 +21,7 @@ pub fn build(b: *std.Build) void { |
| 21 | test_exe.root_module.addImport("build_options", build_options.createModule()); | 21 | test_exe.root_module.addImport("build_options", build_options.createModule()); |
| 22 | | 22 | |
| 23 | const test_cmd = b.addRunArtifact(test_exe); | 23 | const test_cmd = b.addRunArtifact(test_exe); |
| | 24 | test_cmd.setCwd(b.path(".")); |
| 24 | test_cmd.has_side_effects = true; | 25 | test_cmd.has_side_effects = true; |
| 25 | test_cmd.step.dependOn(b.getInstallStep()); | 26 | test_cmd.step.dependOn(b.getInstallStep()); |
| 26 | | 27 | |