Skip to content

Commit

Permalink
test: fix strip on gcc
Browse files Browse the repository at this point in the history
  • Loading branch information
mzdun committed Jun 3, 2024
1 parent c72ecfc commit 7d54b86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion extras/filters/strip_excludes.cc
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ namespace cov::app::strip {
valid_markers);
}

auto root = []() {
auto root = []() { // GCOV_EXCL_LINE[GCC]
auto const text = platform::read_input();
return json::read_json({text.data(), text.size()});
}();
Expand Down
2 changes: 1 addition & 1 deletion tools/flow/lib/matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ def report(config: dict):
at_args.append(f"@{response}")
at_args.append("--")
at_args.append("-v")
at_args.append(f"--compiler={config['report_compiler']}")
at_args.append(f"--compiler={config['compiler'][0]}")
runner.call(reporter, "report", "--filter", "coveralls", report, "-o", intermediate)
runner.call(reporter, "report", "--filter", "strip-excludes", intermediate, *at_args)
if legacy_reporter is not None:
Expand Down

0 comments on commit 7d54b86

Please sign in to comment.