summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2017-07-01 09:28:06 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2017-07-10 14:23:53 +0200
commit5bd09cb79dc66eac7515b93b8991eded8ac25afd (patch)
tree5e855a31a30cf45e0f7b5696f650dc154221d938 /test
parent6be61bf04408855da89f2117d268f1dbe1b98279 (diff)
downloadlvm2-5bd09cb79dc66eac7515b93b8991eded8ac25afd.tar.gz
tests: aux.sh drop useless echo
Simply trim on space.
Diffstat (limited to 'test')
-rw-r--r--test/lib/aux.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/lib/aux.sh b/test/lib/aux.sh
index c5944c211..21c94ac90 100644
--- a/test/lib/aux.sh
+++ b/test/lib/aux.sh
@@ -548,7 +548,7 @@ teardown() {
dm_table | not egrep -q "$vg|$vg1|$vg2|$vg3|$vg4" || {
# Avoid activation of dmeventd if there is no pid
cfg=$(test -s LOCAL_DMEVENTD || echo "--config activation{monitoring=0}")
- if echo "$(dm_info suspended,name)" | grep -q "^Suspended:.*$prefix" ; then
+ if dm_info suspended,name | grep -q "^Suspended:.*$prefix" ; then
echo "Skipping vgremove, suspended devices detected."
else
vgremove -ff "$cfg" \
@@ -1207,8 +1207,7 @@ EOF
# read sequential list and put into associative array
while IFS=$IFS_NL read -r v; do
- # trim white-space-chars via echo when inserting
- CONF["$(echo ${v%%[={]*})"]=${v#*/}
+ CONF["${v%%[={ ]*}"]=${v#*/}
done < "$config_values"
# sort by section and iterate through them