From 76a17033db30d41c52f05abde418ef05bdfd8424 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Sun, 7 Sep 2014 20:24:59 +1000 Subject: [PATCH] also fix the expected count --- bin/tests/system/nsupdate/tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/nsupdate/tests.sh b/bin/tests/system/nsupdate/tests.sh index e46bcebe73..1193155797 100755 --- a/bin/tests/system/nsupdate/tests.sh +++ b/bin/tests/system/nsupdate/tests.sh @@ -620,7 +620,7 @@ done wait dig axfr many.test @10.53.0.1 -p 5300 > dig.out.test$n lines=`awk '$4 == "A" { l++ } END { print l }' dig.out.test$n` -test ${lines:-0} -eq 289 || ret=1 +test ${lines:-0} -eq 64 || ret=1 [ $ret = 0 ] || { echo I:failed; status=1; } echo "I:exit status: $status"