Skip to content

Commit 0f73f85

Browse files
committed
csfilter: Ignore 'profile count data file not found' warnings
1 parent 4e4f7d3 commit 0f73f85

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/lib/msg-filter.cc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,11 @@ MsgFilter::MsgFilter():
130130
d->addMsgFilter("SHELLCHECK_WARNING",
131131
" on line [0-9]+\\.$", " on line NNNN.");
132132

133+
// ignore profile count data file not found errors
134+
d->addMsgFilter("COMPILER_WARNING",
135+
"‘.*’( profile count data file not found)",
136+
"...\1");
137+
133138
// pylint reports, either raw, or prospector-wrapped
134139
const std::string pylintCheckers = "PROSPECTOR_WARNING|PYLINT_WARNING";
135140

0 commit comments

Comments
 (0)