From cbad856135f218c0eb6f9c40711750cf66e3f949 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Sun, 1 May 2016 07:47:22 +1000 Subject: [PATCH] support truncated hashes longer that 7 (cherry picked from commit 5b291f619e312689e25de8fd5662b0b9d4a62679) --- bin/tests/system/builtin/tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/builtin/tests.sh b/bin/tests/system/builtin/tests.sh index 98452068fd..a133e40399 100644 --- a/bin/tests/system/builtin/tests.sh +++ b/bin/tests/system/builtin/tests.sh @@ -56,7 +56,7 @@ n=`expr $n + 1` ret=0 echo "I:Checking that custom version works for rndc ($n)" $RNDC -c ../common/rndc.conf -s 10.53.0.3 -p 9953 status > rndc.status.ns3.$n 2>&1 -grep "^version: BIND $VERSION ${DESCRIPTION}${DESCRIPTION:+ } (this is a test of version)" rndc.status.ns3.$n > /dev/null || ret=1 +grep "^version: BIND $VERSION ${DESCRIPTION}${DESCRIPTION:+ } (this is a test of version)" rndc.status.ns3.$n > /dev/null || ret=1 if [ $ret != 0 ] ; then echo I:failed; status=`expr $status + $ret`; fi n=`expr $n + 1`