mirror of
https://github.com/isc-projects/bind9.git
synced 2026-07-16 07:13:19 -04:00
Net::DNS 0.76 broke the handling of some packets
This commit is contained in:
parent
c1d33c159b
commit
f9e47cfe4f
2 changed files with 14 additions and 2 deletions
|
|
@ -20,7 +20,13 @@ SYSTEMTESTTOP=..
|
|||
|
||||
if $PERL -e 'use Net::DNS;' 2>/dev/null
|
||||
then
|
||||
:
|
||||
if $PERL -e 'use Net::DNS; die if $Net::DNS::VERSION >= 0.76;' 2>/dev/null
|
||||
then
|
||||
:
|
||||
else
|
||||
echo "I:Net::DNS version 0.76 has a bug that causes this test to fail: please update." >&2
|
||||
exit 1
|
||||
fi
|
||||
else
|
||||
echo "I:This test requires the Net::DNS library." >&2
|
||||
exit 1
|
||||
|
|
|
|||
|
|
@ -16,7 +16,13 @@
|
|||
|
||||
if $PERL -e 'use Net::DNS;' 2>/dev/null
|
||||
then
|
||||
:
|
||||
if $PERL -e 'use Net::DNS; die if $Net::DNS::VERSION >= 0.76;' 2>/dev/null
|
||||
then
|
||||
:
|
||||
else
|
||||
echo "I:Net::DNS version 0.76 has a bug that causes this test to fail: please update." >&2
|
||||
exit 1
|
||||
fi
|
||||
else
|
||||
echo "I:This test requires the Net::DNS library." >&2
|
||||
exit 1
|
||||
|
|
|
|||
Loading…
Reference in a new issue