checksrc: introduce a whitelisting concept

This commit is contained in:
Daniel Stenberg
2015-03-17 13:53:12 +01:00
parent 9395999543
commit 0037eb5805
3 changed files with 29 additions and 0 deletions

View File

@@ -26,13 +26,31 @@ my $indent = 2;
my $warnings;
my $errors;
my $supressed; # whitelisted problems
my $file;
my $dir=".";
my $wlist;
my %whitelist;
sub readwhitelist {
open(W, "<checksrc.whitelist");
my @all=<W>;
for(@all) {
chomp;
$whitelist{$_}=1;
}
close(W);
}
sub checkwarn {
my ($num, $col, $file, $line, $msg, $error) = @_;
if($whitelist{$line}) {
$supressed++;
return;
}
my $w=$error?"error":"warning";
if($w) {
@@ -78,6 +96,8 @@ if(!$file) {
exit;
}
readwhitelist();
do {
if("$wlist" !~ / $file /) {
my $fullname = $file;