From: Mark Andrews Date: Tue, 24 Jun 2014 15:01:50 +0000 (+1000) Subject: Net::DNS 0.78 should work when it is released as it contains: X-Git-Tag: v9.11.0a1~1503 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=70ee770c69846362e1f3788377b2b7aef6083a1f;p=thirdparty%2Fbind9.git Net::DNS 0.78 should work when it is released as it contains: Fix rt.cpan.org #96439 Uninitialised decoding object when printing packet --- diff --git a/bin/tests/system/resolver/prereq.sh b/bin/tests/system/resolver/prereq.sh index 6363fb9bb52..6715213e448 100644 --- a/bin/tests/system/resolver/prereq.sh +++ b/bin/tests/system/resolver/prereq.sh @@ -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 diff --git a/bin/tests/system/statistics/prereq.sh b/bin/tests/system/statistics/prereq.sh index 92e8eda8b18..323fc42cf33 100644 --- a/bin/tests/system/statistics/prereq.sh +++ b/bin/tests/system/statistics/prereq.sh @@ -16,11 +16,11 @@ 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