From 5bd09cb79dc66eac7515b93b8991eded8ac25afd Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Sat, 1 Jul 2017 09:28:06 +0200 Subject: [PATCH] tests: aux.sh drop useless echo Simply trim on space. --- test/lib/aux.sh | 5 ++--- 1 file 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 -- 2.43.5