valgrind: track origin of uninitialised values

This commit is contained in:
Christian Göttsche 2021-09-10 11:26:45 +02:00 committed by BenBE
parent dd88510dcd
commit fcca4c2f2d
1 changed files with 1 additions and 1 deletions

View File

@ -3,4 +3,4 @@
SCRIPT=$(readlink -f "$0")
SCRIPTDIR=$(dirname "$SCRIPT")
valgrind --leak-check=full --show-reachable=yes --show-leak-kinds=all --track-fds=yes --errors-for-leak-kinds=all --suppressions="${SCRIPTDIR}/htop_suppressions.valgrind" "${SCRIPTDIR}/../htop"
valgrind --leak-check=full --show-reachable=yes --show-leak-kinds=all --track-fds=yes --errors-for-leak-kinds=all --track-origins=yes --suppressions="${SCRIPTDIR}/htop_suppressions.valgrind" "${SCRIPTDIR}/../htop"