From: Mark Andrews Date: Thu, 6 Feb 2020 03:13:02 +0000 (+1100) Subject: remove space before 'failed' X-Git-Tag: v9.14.11~13^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1264cbc9b86b7a26f075b42e66fc623ac08d0244;p=thirdparty%2Fbind9.git remove space before 'failed' (cherry picked from commit 0d5ec0c7dc68541b8688039acbcaddf4f22f4ae3) --- diff --git a/bin/tests/system/chain/tests.sh b/bin/tests/system/chain/tests.sh index bfa81d82483..f05b2f2f884 100644 --- a/bin/tests/system/chain/tests.sh +++ b/bin/tests/system/chain/tests.sh @@ -158,7 +158,7 @@ ret=0 $RNDCCMD 10.53.0.7 null --- start test$n --- 2>&1 | sed 's/^/ns7 /' | cat_i $DIG $DIGOPTS @10.53.0.7 c.example > dig.out.$n grep "status: NOERROR" dig.out.$n > /dev/null || ret=1 -if [ $ret != 0 ]; then echo_i " failed"; fi +if [ $ret != 0 ]; then echo_i "failed"; fi status=`expr $status + $ret` n=`expr $n + 1` @@ -167,7 +167,7 @@ ret=0 $RNDCCMD 10.53.0.7 null --- start test$n --- 2>&1 | sed 's/^/ns7 /' | cat_i $DIG $DIGOPTS @10.53.0.7 d.example > dig.out.$n grep "status: NOERROR" dig.out.$n > /dev/null || ret=1 -if [ $ret != 0 ]; then echo_i " failed"; fi +if [ $ret != 0 ]; then echo_i "failed"; fi status=`expr $status + $ret` n=`expr $n + 1`