]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Add missed ret!=0 checks
authorMark Andrews <marka@isc.org>
Tue, 17 Feb 2026 02:12:59 +0000 (13:12 +1100)
committerMark Andrews <marka@isc.org>
Tue, 17 Feb 2026 02:17:38 +0000 (13:17 +1100)
bin/tests/system/dnstap/tests.sh

index d4bcdd30ea40461f8c3c8cd4f60406b2f56635d8..c311e49ef014fb57ec7240dfd26c3930ade308d4 100644 (file)
@@ -672,6 +672,8 @@ EOF
     echo_i "ns4 $rr4 expected 0"
     ret=1
   }
+  if [ $ret != 0 ]; then echo_i "failed"; fi
+  status=$((status + ret))
 
   echo_i "checking UPDATE_QUERY message counts"
   ret=0
@@ -794,6 +796,8 @@ EOF
     echo_i "ns4 $rr4 expected 0"
     ret=1
   }
+  if [ $ret != 0 ]; then echo_i "failed"; fi
+  status=$((status + ret))
 
   echo_i "checking UPDATE_QUERY message counts"
   ret=0