Skip to content
Snippets Groups Projects
Commit d097037d authored by Bill King's avatar Bill King
Browse files

Updates to krazy2 reporting.

parent 2b1ad2f9
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ use strict;
my $file = shift;
die "No .tasks file given to save data into." unless ($file);
open(PIPE, "krazy2all . --export textedit |") or
open(PIPE, "find . -name \*.cpp -o -name \*.h | grep -v /tests/ | grep -v /3rdparty/ | xargs krazy2 --check-sets qt4 --exclude captruefalse --export textedit |") or
die "Could not start krazy2all, please make sure it is in your PATH.";
open(FILE, ">$file") or die "Failed to open \"$file\" for writing.";
......@@ -18,6 +18,7 @@ while (<PIPE>) {
my $lineno = $2;
my $description = $3;
next if $file =~ /\/3rdparty\//;
next if $file =~ /\/tests\//;
print FILE "$file\t$lineno\tWARN\tKrazy: $description\n";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment