mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 11:22:04 -04:00
Fix digdelv test error
The digdelv system test has a test case in which stderr was included in the dig output. When trace logging was in use, this confused the grep and caused a spurious test failure.
This commit is contained in:
parent
07e84ae54e
commit
2143120636
1 changed files with 1 additions and 1 deletions
|
|
@ -1294,7 +1294,7 @@ if [ -x "$DELV" ] ; then
|
|||
n=$((n+1))
|
||||
echo_i "check delv +yaml output ($n)"
|
||||
ret=0
|
||||
delv_with_opts +yaml @10.53.0.3 any ns2.example > delv.out.test$n 2>&1 || ret=1
|
||||
delv_with_opts +yaml @10.53.0.3 any ns2.example > delv.out.test$n || ret=1
|
||||
$PYTHON yamlget.py delv.out.test$n status > yamlget.out.test$n 2>&1 || ret=1
|
||||
read -r value < yamlget.out.test$n
|
||||
[ "$value" = "success" ] || ret=1
|
||||
|
|
|
|||
Loading…
Reference in a new issue