diff options
Diffstat (limited to 'BuildTools/Cppcheck.sh')
-rwxr-xr-x | BuildTools/Cppcheck.sh | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/BuildTools/Cppcheck.sh b/BuildTools/Cppcheck.sh index 93b5d13..a1f33f6 100755 --- a/BuildTools/Cppcheck.sh +++ b/BuildTools/Cppcheck.sh @@ -2,8 +2,11 @@ cppcheck $@ \ --enable=all \ + --inline-suppr \ + --suppress=postfixOperator:3rdParty/hippomocks.h \ + --suppress=stlSize:3rdParty/hippomocks.h \ + --suppress=noConstructor \ -i 3rdParty -i .git -i .sconf_temp \ - -i 3rdParty/hippomocks.h \ -i Swiftob/linit.cpp \ -i Swift/QtUI/EventViewer/main.cpp \ -i Swift/QtUI/ApplicationTest \ @@ -13,9 +16,4 @@ cppcheck $@ \ \ -I . \ -I Swift/QtUI \ - . 2> cppcheck.tmp -cat cppcheck.tmp | grep -v "(style)" | grep -v "\[3rdParty/hippomocks.h" > cppcheck.log -rm cppcheck.tmp - -echo "Result (cppcheck.log):" -cat cppcheck.log + . |