summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2017-06-29 07:57:59 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2017-06-29 22:23:17 +0200
commitb16ca76260bbfb950ee7246a249ea7e4987520af (patch)
tree5a861a689c31c8ee4fdc73130290a2e3783d96d0
parent44e530b919d72005e10970c13699c7fbfd736ce9 (diff)
downloadlvm2-b16ca76260bbfb950ee7246a249ea7e4987520af.tar.gz
tests: aux.sh no mixing string
Argument mixes string and array. Use * or separate argument.
-rw-r--r--test/lib/aux.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/lib/aux.sh b/test/lib/aux.sh
index 816de9a61..a3e2b7015 100644
--- a/test/lib/aux.sh
+++ b/test/lib/aux.sh
@@ -398,7 +398,7 @@ teardown_devs_prefixed() {
local mounts=( $(grep "$prefix" /proc/mounts | cut -d' ' -f1) )
if test ${#mounts[@]} -gt 0; then
- test "$stray" -eq 0 || echo "Removing stray mounted devices containing $prefix: ${mounts[@]}"
+ test "$stray" -eq 0 || echo "Removing stray mounted devices containing $prefix:" "${mounts[@]}"
if umount -fl "${mounts[@]}"; then
udev_wait
fi
@@ -461,7 +461,7 @@ teardown_devs() {
local stray_loops=( $(losetup -a | grep "$COMMON_PREFIX" | cut -d: -f1) )
test ${#stray_loops[@]} -eq 0 || {
teardown_devs_prefixed "$COMMON_PREFIX" 1
- echo "Removing stray loop devices containing $COMMON_PREFIX: ${stray_loops[@]}"
+ echo "Removing stray loop devices containing $COMMON_PREFIX:" "${stray_loops[@]}"
for i in "${stray_loops[@]}" ; do test ! -b "$i" || losetup -d "$i" || true ; done
# Leave test when udev processed all removed devices
udev_wait
@@ -1400,7 +1400,7 @@ driver_at_least() {
local version=$(dmsetup version | tail -1 2>/dev/null)
version=${version##*:}
version_at_least "$version" "$@" || {
- echo "Found driver version $version, but requested $@." >&2
+ echo "Found driver version $version, but requested" "$@" "." >&2
return 1
}
}
@@ -1424,7 +1424,7 @@ have_thin() {
CONF[2]="global/thin_repair_executable = \"\""
fi
if test ${#CONF[@]} -ne 0 ; then
- echo "TEST WARNING: Reconfiguring ${CONF[@]}"
+ echo "TEST WARNING: Reconfiguring" "${CONF[@]}"
lvmconf "${CONF[@]}"
fi
}
@@ -1472,7 +1472,7 @@ have_cache() {
CONF[2]="global/cache_repair_executable = \"\""
fi
if test ${#CONF[@]} -ne 0 ; then
- echo "TEST WARNING: Reconfiguring ${CONF[@]}"
+ echo "TEST WARNING: Reconfiguring" "${CONF[@]}"
lvmconf "${CONF[@]}"
fi
}