From 1f727f3f3d925af35877ad572ba606965bc6f1e7 Mon Sep 17 00:00:00 2001 From: Petr Rockai Date: Wed, 1 Oct 2014 08:19:05 +0200 Subject: [PATCH] test: Call $VALGRIND directly in lvm-wrapper. --- test/lib/aux.sh | 2 +- test/lib/lvm-wrapper.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/lib/aux.sh b/test/lib/aux.sh index ca06c6934..88b821a56 100644 --- a/test/lib/aux.sh +++ b/test/lib/aux.sh @@ -14,7 +14,7 @@ run_valgrind() { # Execute script which may use $TESTNAME for creating individual # log files for each execute command - exec "${VALGRIND:-valg}" "$@" + exec "${VALGRIND:-valgrind}" "$@" } expect_failure() { diff --git a/test/lib/lvm-wrapper.sh b/test/lib/lvm-wrapper.sh index 3eb0d99a9..496facc7b 100644 --- a/test/lib/lvm-wrapper.sh +++ b/test/lib/lvm-wrapper.sh @@ -24,7 +24,7 @@ test -z "$LVM_GDB" || exec gdb --readnow --args "$abs_top_builddir/tools/lvm" $C # Multiple level of LVM_VALGRIND support # the higher level the more commands are traced if test -n "$LVM_VALGRIND"; then - RUN_DBG="aux run_valgrind"; + RUN_DBG="${VALGRIND:-valgrind}"; fi if test -n "$LVM_STRACE"; then -- 2.43.5