1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: cppcheck: Run with --check-level=exhaustive
Author: xiao sheng wen <atzlinux@sina.com>
Forwarded: not-needed
Bug-Debian: https://bugs.debian.org/1071336
---
Last-Update: 2024-05-31
--- psensor-1.2.1.orig/tests/test-cppcheck.sh
+++ psensor-1.2.1/tests/test-cppcheck.sh
@@ -4,4 +4,4 @@ EIDS=performance,portability
ROOTDIR="$srcdir/.."
INCLUDE_OPTS="-q -f -I$ROOTDIR/src/lib -I$ROOTDIR/src -I$ROOTDIR -I$ROOTDIR/.."
-cppcheck $ROOTDIR/src $INCLUDE_OPTS --enable=$EIDS --quiet --error-exitcode=1 || exit 1
+cppcheck $ROOTDIR/src $INCLUDE_OPTS --enable=$EIDS --quiet --error-exitcode=1 --check-level=exhaustive || exit 1
|