Track file descriptors in valgrind script

This commit is contained in:
Christian Göttsche 2020-11-25 22:05:12 +01:00
parent 9b31ee5b63
commit a6a5686388
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 --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 --suppressions="${SCRIPTDIR}/htop_suppressions.valgrind" "${SCRIPTDIR}/../htop"