23 lines
784 B
Bash
Executable File
23 lines
784 B
Bash
Executable File
#!/bin/bash
|
|
set -e # abort on error
|
|
|
|
if [[ `pwd` == */test/cfg ]] ; then # we are in test/cfg
|
|
CPPCHECK="../../cppcheck"
|
|
DIR=""
|
|
else # assume we are in repo root
|
|
CPPCHECK="./cppcheck"
|
|
DIR=./test/cfg/
|
|
fi
|
|
|
|
# posix.c
|
|
gcc -fsyntax-only ${DIR}posix.c
|
|
${CPPCHECK} --check-library --library=posix --enable=information --enable=style --error-exitcode=1 --suppress=missingIncludeSystem --inline-suppr ${DIR}posix.c
|
|
|
|
# gnu.c
|
|
gcc -fsyntax-only -D_GNU_SOURCE ${DIR}gnu.c
|
|
${CPPCHECK} --check-library --library=gnu --enable=information --enable=style --error-exitcode=1 --suppress=missingIncludeSystem --inline-suppr ${DIR}gnu.c
|
|
|
|
# std.c
|
|
gcc -fsyntax-only ${DIR}std.c
|
|
${CPPCHECK} --check-library --enable=information --error-exitcode=1 --suppress=missingIncludeSystem --inline-suppr ${DIR}std.c
|