From: Evan Hunt Date: Thu, 16 Jan 2014 17:51:49 +0000 (-0800) Subject: [v9_6] skip xfer test with Net::DNS 0.73 X-Git-Tag: v9.6-ESV-R11rc2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3d9c8affcb3a8642c5efa2f5e7004972d49ecba;p=thirdparty%2Fbind9.git [v9_6] skip xfer test with Net::DNS 0.73 --- diff --git a/bin/tests/system/xfer/prereq.sh b/bin/tests/system/xfer/prereq.sh index 2a7f37d49ba..96acf14dedb 100644 --- a/bin/tests/system/xfer/prereq.sh +++ b/bin/tests/system/xfer/prereq.sh @@ -14,11 +14,15 @@ # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -# $Id$ - if $PERL -e 'use Net::DNS;' 2>/dev/null then - : + if $PERL -e 'use Net::DNS; die if $Net::DNS::VERSION == 0.73;' 2>/dev/null + then + : + else + echo "I:Net::DNS version 0.73 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