[integration tests] show more callers when using valgrind memcheck looking for leaks in authentic and lcs

This commit is contained in:
Benjamin Dauvergne 2011-11-22 18:49:41 +01:00
parent 95137b1ad1
commit d72cc31347
1 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,6 @@ if [ $1 == 'python' ]; then
else
NAME=$1
fi
env G_DEBUG=gc-friendly MALLOC_CHECK_=2 G_SLICE=always-malloc valgrind --show-reachable=yes --suppressions=../valgrind/lasso.supp --suppressions=../valgrind/glib.supp --suppressions=../valgrind/openssl.supp --suppressions=/usr/lib/valgrind/python.supp --leak-check=full --log-file="${NAME}_${DATE}_pid-$$.log" --track-origins=yes "$@"
env G_DEBUG=gc-friendly MALLOC_CHECK_=2 G_SLICE=always-malloc valgrind --show-reachable=yes --suppressions=../valgrind/lasso.supp --suppressions=../valgrind/glib.supp --suppressions=../valgrind/openssl.supp --suppressions=/usr/lib/valgrind/python.supp --leak-check=full --log-file="${NAME}_${DATE}_pid-$$.log" --track-origins=yes --num-callers=50 "$@"