]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
[rt40109] added a test for +dscp to the digdelv tests
authorCurtis Blackburn <ckb@isc.org>
Mon, 21 Dec 2015 22:13:03 +0000 (14:13 -0800)
committerCurtis Blackburn <ckb@isc.org>
Mon, 21 Dec 2015 22:13:03 +0000 (14:13 -0800)
bin/tests/system/digdelv/tests.sh

index 3e654a6ab18ce4f8949572c64e509fc33f15d642..92e4358c11b8085f97f4706b298900f68721cbce 100644 (file)
@@ -267,6 +267,17 @@ if [ -x ${DIG} ] ; then
   if [ $ret != 0 ]; then echo "I:failed"; fi 
   status=`expr $status + $ret`
 
+  n=`expr $n + 1`
+  echo "I:checking dig +dscp ($n)"
+  ret=0
+  $DIG $DIGOPTS @10.53.0.3 +dscp=32 a a.example > /dev/null 2>&1 || ret=1
+  $DIG $DIGOPTS @10.53.0.3 +dscp=-1 a a.example > /dev/null 2>&1 && ret=1
+  $DIG $DIGOPTS @10.53.0.3 +dscp=64 a a.example > /dev/null 2>&1 && ret=1
+  #TODO add a check to make sure dig is actually setting the dscp on the query
+  #we might have to add better logging to named for this
+  if [ $ret != 0 ]; then echo "I:failed"; fi
+  status=`expr $status + $ret`
+
 else
   echo "$DIG is needed, so skipping these dig tests"
 fi