From: Evan Hunt Date: Thu, 16 Jan 2014 17:50:23 +0000 (-0800) Subject: [master] skip xfer test with Net::DNS 0.73 X-Git-Tag: v9.10.0a2~71 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=576009560152f135a54862c2d9620872b9434f60;p=thirdparty%2Fbind9.git [master] 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 c8a1f808b7d..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: prereq.sh,v 1.2 2011/03/12 23:47:42 tbox Exp $ - 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