* #8968: hudson: added --inlin-suppr to cppcheck

This commit is contained in:
Tristan Matthews
2012-03-01 10:44:43 -05:00
parent 8d443c1c1b
commit 7dafe7ddfe

View File

@ -14,7 +14,7 @@ function run_code_analysis {
# Check if cppcheck is installed on the system
if [ `which cppcheck &>/dev/null ; echo $?` -ne 1 ] ; then
pushd src
cppcheck . --enable=all --xml 2> cppcheck-report.xml
cppcheck . --enable=all --xml --inline-suppr 2> cppcheck-report.xml
popd
fi
}