]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
DIG -> $DIG
authorMark Andrews <marka@isc.org>
Sat, 8 Dec 2012 04:33:10 +0000 (15:33 +1100)
committerMark Andrews <marka@isc.org>
Sat, 8 Dec 2012 04:35:01 +0000 (15:35 +1100)
bin/tests/system/unknown/tests.sh

index f0f8e8fbcbb3f9492e4e85252c773c30a3b9bfce..69d78715218cba79a8ac9847e5a2b73a9ce740b6 100644 (file)
@@ -174,14 +174,14 @@ status=`expr $status + $ret`
 
 echo "I:check that '"'"\\#"'"' is not treated as the unknown escape sequence"
 ret=0
-DIG $DIGOPTS @10.53.0.1 +tcp +short txt8.example txt > dig.out
+$DIG $DIGOPTS @10.53.0.1 +tcp +short txt8.example txt > dig.out
 echo '"#" "2" "0145"' | diff - dig.out || ret=1
 [ $ret = 0 ] || echo "I: failed"
 status=`expr $status + $ret`
 
 echo "I:check that '"'TXT \# text'"' is not treated as the unknown escape sequence"
 ret=0
-DIG $DIGOPTS @10.53.0.1 +tcp +short txt9.example txt > dig.out
+$DIG $DIGOPTS @10.53.0.1 +tcp +short txt9.example txt > dig.out
 echo '"#" "text"' | diff - dig.out || ret=1
 [ $ret = 0 ] || echo "I: failed"
 status=`expr $status + $ret`