We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae33eb8 commit 55a3367Copy full SHA for 55a3367
build.zig
@@ -174,7 +174,7 @@ pub fn build(b: *std.Build) void {
174
const kcov_collect = std.Build.Step.Run.create(b, "kcov collect coverage");
175
kcov_collect.addArg(kcov_bin);
176
kcov_collect.addArg("--collect-only");
177
- kcov_collect.addPrefixedDirectoryArg("--include-pattern=", b.path("."));
+ kcov_collect.addPrefixedDirectoryArg("--include-path=", b.path("."));
178
kcov_merge.addDirectoryArg(kcov_collect.addOutputDirectoryArg(test_artifact.name));
179
kcov_collect.addArtifactArg(test_artifact);
180
kcov_collect.enableTestRunnerMode();
0 commit comments