summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Rockai <prockai@redhat.com>2014-10-01 08:19:05 +0200
committerPetr Rockai <prockai@redhat.com>2014-10-01 08:22:55 +0200
commit66f6b787955008f3dfe84b9b82853b08bae350b7 (patch)
treebb694c427e9b7e29fbf9be00bf4173a627f7791a
parent9080b21ed186562b17285ca22a5fc6ef4482f8a7 (diff)
downloadlvm2-66f6b787955008f3dfe84b9b82853b08bae350b7.tar.gz
test: Call $VALGRIND directly in lvm-wrapper.
-rw-r--r--test/lib/aux.sh2
-rw-r--r--test/lib/lvm-wrapper.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/lib/aux.sh b/test/lib/aux.sh
index eaba160ee..5db209fb2 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