gcc2tasks.pl: Also detect errors

Previously, the script would only detect warnings. Adapt
the pattern to capture errors as well.

Change-Id: I15ad97a9a1305aab91c046518f3c46b2e0c55127
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Friedemann Kleint
2017-02-20 15:19:57 +01:00
parent 7ee75bf4c2
commit 4deee5431a
+4 -3
View File
@@ -41,11 +41,12 @@ while (my $line = <STDIN> ) {
chomp($line);
# --- extract file name based matching:
# file.cpp:214:37: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
if ($line =~ /^([^:]+):(\d+):\d*:? warning: (.*)$/) {
if ($line =~ /^([^:]+):(\d+):\d*:? (warning|error): (.*)$/) {
my $fileName = $1;
my $lineNumber = $2;
my $text = $3;
my $type = $3 eq 'warning' ? 'warn' : 'err';
my $text = $4;
$fileName =~ s|\\|/|g;
print $fileName, "\t", $lineNumber, "\twarn\t", $text,"\n";
print $fileName, "\t", $lineNumber, "\t", $type, "\t", $text,"\n";
}
}