From f621b255d948ea206c79b6464a3e1901ac2d985b Mon Sep 17 00:00:00 2001 From: Curtis Blackburn Date: Wed, 2 Nov 2016 18:09:37 -0700 Subject: [PATCH] corrected typo in nsupdate test (DIG-->$DIG) --- 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 ded835439e..8a1e4797e0 100755 --- a/bin/tests/system/nsupdate/tests.sh +++ b/bin/tests/system/nsupdate/tests.sh @@ -696,7 +696,7 @@ update add r1.too-big.test 3600 IN TXT r1.too-big.test send EOF grep "update failed: SERVFAIL" nsupdate.out-$n > /dev/null || ret=1 -DIG +tcp @10.53.0.3 -p 5300 r1.too-big.test TXT > dig.out.ns3.test$n +$DIG +tcp @10.53.0.3 -p 5300 r1.too-big.test TXT > dig.out.ns3.test$n grep "status: NXDOMAIN" dig.out.ns3.test$n > /dev/null || ret=1 grep "records in zone (4) exceeds max-records (3)" ns3/named.run > /dev/null || ret=1 [ $ret = 0 ] || { echo I:failed; status=1; }