From 585ced4895f75b8efb7e6b18d019d14071242ee5 Mon Sep 17 00:00:00 2001 From: Evan Hunt Date: Wed, 2 Nov 2016 19:34:58 -0700 Subject: [PATCH] [v9_10] 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 e830efd907..db7c49f5bb 100755 --- a/bin/tests/system/nsupdate/tests.sh +++ b/bin/tests/system/nsupdate/tests.sh @@ -630,7 +630,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; }