diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_script.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_script.in b/tests/test_script.in index bd3cc3ea..aac28fb6 100644 --- a/tests/test_script.in +++ b/tests/test_script.in @@ -10,6 +10,11 @@ case "$1" in --valgrind) export USE_VALGRIND="valgrind -q --sim-hints=lax-ioctls" shift; + ;; + --valgrind-leakcheck) + export USE_VALGRIND="valgrind --sim-hints=lax-ioctls --leak-check=full --show-reachable=yes --log-file=/tmp/valgrind-%p.log" + shift; + ;; esac if test "$1"x = x ; then |