summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorBill King <bill.king@nokia.com>2011-05-09 09:33:05 +0200
committerBill King <bill.king@nokia.com>2011-05-09 09:33:53 +0200
commitd097037d52ef8837948a3866c1c1f969fa665e25 (patch)
tree20dc4e387b200faf3ab8a597dbb94ee664a0969a /scripts
parent2b1ad2f9a32732fb96d66dfb843b190eda7c001f (diff)
downloadqt-creator-d097037d52ef8837948a3866c1c1f969fa665e25.tar.gz
Updates to krazy2 reporting.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/krazy2tasks.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/krazy2tasks.pl b/scripts/krazy2tasks.pl
index 0f42efc058..9b772b85c4 100755
--- a/scripts/krazy2tasks.pl
+++ b/scripts/krazy2tasks.pl
@@ -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";
}