Skip to content

Commit

Permalink
csfilter: Ignore 'profile count data file not found' warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
siteshwar committed Oct 9, 2023
1 parent 4e4f7d3 commit 0f73f85
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/lib/msg-filter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,11 @@ MsgFilter::MsgFilter():
d->addMsgFilter("SHELLCHECK_WARNING",
" on line [0-9]+\\.$", " on line NNNN.");

// ignore profile count data file not found errors
d->addMsgFilter("COMPILER_WARNING",
"‘.*’( profile count data file not found)",
"...\1");

// pylint reports, either raw, or prospector-wrapped
const std::string pylintCheckers = "PROSPECTOR_WARNING|PYLINT_WARNING";

Expand Down

0 comments on commit 0f73f85

Please sign in to comment.