You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pixz/test/cppcheck-src.sh

9 lines
148 B
Bash

#!/bin/sh
if which cppcheck &> /dev/null ; then
cppcheck --error-exitcode=1 $srcdir/../src
else
echo "no cppcheck, skipping test"
exit 77
fi