mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-30 14:25:47 -04:00
Fix catz system test error
The '|| ret=1' is omitted from the check. This was introduced in the
b171cacf4f commit. Fix the error.
This commit is contained in:
parent
229a47afdb
commit
f200b1ac18
1 changed files with 2 additions and 2 deletions
|
|
@ -2445,8 +2445,8 @@ n=$((n + 1))
|
|||
echo_i "waiting for secondary to sync up ($n)"
|
||||
ret=0
|
||||
wait_for_message ns2/named.run "catz: catz_delzone_cb: zone 'dom17.example' deleted" \
|
||||
&& wait_for_message ns2/named.run "catz: catz_delzone_cb: zone 'dom18.example' deleted" \
|
||||
&& if [ $ret -ne 0 ]; then echo_i "failed"; fi
|
||||
&& wait_for_message ns2/named.run "catz: catz_delzone_cb: zone 'dom18.example' deleted" || ret=1
|
||||
if [ $ret -ne 0 ]; then echo_i "failed"; fi
|
||||
status=$((status + ret))
|
||||
|
||||
n=$((n + 1))
|
||||
|
|
|
|||
Loading…
Reference in a new issue