Mailing List Archive

svn commit: r1914416 - /spamassassin/trunk/t/dnsbl_subtests.t
Author: sidney
Date: Thu Dec 7 02:49:06 2023
New Revision: 1914416

URL: http://svn.apache.org/viewvc?rev=1914416&view=rev
Log:
Bug 8197 Skip DNS resolver test on Windows with Net::DNS 1.41, it's fix has a different error

Modified:
spamassassin/trunk/t/dnsbl_subtests.t

Modified: spamassassin/trunk/t/dnsbl_subtests.t
URL: http://svn.apache.org/viewvc/spamassassin/trunk/t/dnsbl_subtests.t?rev=1914416&r1=1914415&r2=1914416&view=diff
==============================================================================
--- spamassassin/trunk/t/dnsbl_subtests.t (original)
+++ spamassassin/trunk/t/dnsbl_subtests.t Thu Dec 7 02:49:06 2023
@@ -21,10 +21,10 @@ use constant HAS_BAD_WINDOWS_NET_DNS =>
require Net::DNS;
$RUNNING_ON_WINDOWS &&
(version->parse(Net::DNS->VERSION) >= version->parse(1.38)) &&
- (version->parse(Net::DNS->VERSION) < version->parse(1.41));
+ (version->parse(Net::DNS->VERSION) < version->parse(1.42));
};
plan skip_all => "Net::DNS::Nameserver in unavailable on this system" unless (HAS_NET_DNS_NAMESERVER);
-plan skip_all => "Tests don't work on Windows with Net::DNS 1.38 to 1.40" if (HAS_BAD_WINDOWS_NET_DNS);
+plan skip_all => "Tests don't work on Windows with Net::DNS 1.38 to 1.41" if (HAS_BAD_WINDOWS_NET_DNS);
plan tests => 46;

use Mail::SpamAssassin;