Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
d097037d
Commit
d097037d
authored
May 09, 2011
by
Bill King
Browse files
Updates to krazy2 reporting.
parent
2b1ad2f9
Changes
1
Show whitespace changes
Inline
Side-by-side
scripts/krazy2tasks.pl
View file @
d097037d
...
...
@@ -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
\t
WARN
\t
Krazy:
$description
\n
";
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment