Skip to content

Optionally make partial coverage "uncovered" #608

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
Open
Prev Previous commit
Next Next commit
Does -a help?
  • Loading branch information
MichaelChirico committed May 11, 2025
commit eec4c716893b1eb62cb20e3bde8f3cad148fe2bd
2 changes: 1 addition & 1 deletion R/compiled.R
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ run_gcov <- function(path, quiet = TRUE, clean = TRUE,
}
run_gcov_one <- function(src) {
system_check(gcov_path,
args = c(gcov_args, src, "-p", "-o", dirname(src)),
args = c(gcov_args, src, "-a", "-p", "-o", dirname(src)),
quiet = quiet, echo = !quiet)
gcov_outputs <- list.files(path, pattern = rex::rex(".gcov", end), recursive = TRUE, full.names = TRUE)
if (clean) {
Expand Down
Loading