summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2011-06-13 15:33:13 (GMT)
committerRemko Tronçon <git@el-tramo.be>2011-06-13 16:57:09 (GMT)
commit790134ceb34ab6047fe204517d263f343dbeb920 (patch)
treed8002133de67108f380248a0ec7d063c8f1956b7 /BuildTools/Cppcheck.sh
parenta03cedb3942e4c7c90e62fe9a73c6d15e38fbb68 (diff)
downloadswift-790134ceb34ab6047fe204517d263f343dbeb920.zip
swift-790134ceb34ab6047fe204517d263f343dbeb920.tar.bz2
Added CppCheck script.
Tweaked the sources to satisfy cppcheck.
Diffstat (limited to 'BuildTools/Cppcheck.sh')
-rwxr-xr-xBuildTools/Cppcheck.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/BuildTools/Cppcheck.sh b/BuildTools/Cppcheck.sh
new file mode 100755
index 0000000..93b5d13
--- /dev/null
+++ b/BuildTools/Cppcheck.sh
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+cppcheck $@ \
+ --enable=all \
+ -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 \
+ -i Swift/QtUI/ChatView/main.cpp \
+ -i Swift/QtUI/Roster/main.cpp \
+ -i Swift/QtUI/NotifierTest/NotifierTest.cpp \
+ \
+ -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