]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
[v9_6] skip xfer test with Net::DNS 0.73
authorEvan Hunt <each@isc.org>
Thu, 16 Jan 2014 17:51:49 +0000 (09:51 -0800)
committerEvan Hunt <each@isc.org>
Thu, 16 Jan 2014 17:51:49 +0000 (09:51 -0800)
bin/tests/system/xfer/prereq.sh

index 2a7f37d49ba5ea4fd6ec87d2a01d134815b713f0..96acf14dedbf2712d609451ffd123820416f1f6b 100644 (file)
 # 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