Add verbose option to the cppcheck script.

svn path=/trunk/; revision=45542
This commit is contained in:
Evan Huus 2012-10-14 19:30:33 +00:00
parent f8d36704a8
commit 90584f4655
1 changed files with 2 additions and 1 deletions

View File

@ -35,11 +35,12 @@ SUPPRESSIONS="--suppressions-list=$CPPCHECK_DIR/suppressions"
INCLUDES="--includes-file=$CPPCHECK_DIR/includes"
MODE="gcc"
while getopts "ahj:" OPTCHAR ; do
while getopts "ahj:v" OPTCHAR ; do
case $OPTCHAR in
a) SUPPRESSIONS=" " ;;
h) MODE="html" ;;
j) THREADS="$OPTARG" ;;
v) QUIET=" " ;;
esac
done
shift $(($OPTIND-1))