Net::DNS 0.78 should work when it is released as it contains:

Fix rt.cpan.org #96439

		Uninitialised decoding object when printing packet

(cherry picked from commit 70ee770c69)
This commit is contained in:
Mark Andrews
2014-06-25 01:01:50 +10:00
parent da5e13af84
commit 92483774d9

View File

@@ -20,11 +20,11 @@ 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
if $PERL -e 'use Net::DNS; die if ($Net::DNS::VERSION >= 0.76 && $Net::DNS::VERSION <= 0.77);' 2>/dev/null
then
:
else
echo "I:Net::DNS version 0.76 has a bug that causes this test to fail: please update." >&2
echo "I:Net::DNS version 0.76 and 0.77 have a bug that causes this test to fail: please update." >&2
exit 1
fi
else