Skip Menu |

This queue is for tickets about the Net-DNS CPAN distribution.

Report information
The Basics
Id: 2181
Status: resolved
Priority: 0/
Queue: Net-DNS

People
Owner: bbb [...] cpan.org
Requestors: gll [...] inel.gov
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.33
Fixed in: (no value)



Subject: Net-DNS-0.33 t/10-recurse tests 3-8 fail on Solaris 5.8
The installation test t/10-recurse used during make test for Net-DNS-0.33 fails on a Solaris 5.8 system with perl 5.8.0. Attached file is a script of the install attempt.

Message body is not shown because it is too large.

RT-Send-CC: ctriv [...] dyndns.org
That's weird that a Solaris box can't do query(".", "NS", "IN") I wrongly assumed it would always return something. I guess if the network is down, that would fail. Sorry about that. Here is the patch: ----- snip ----- --- lib/Net/DNS/Resolver/Recurse.pm.orig Sun Jan 5 14:18:33 2003 +++ lib/Net/DNS/Resolver/Recurse.pm Wed Mar 5 11:56:53 2003 @@ -57,6 +57,8 @@ } } $self->{'hints'} = \%hints; + } else { + $self->{'hints'} = {}; } if (%{ $self->{'hints'} }) { if ($self->{'debug'}) { ----- snap ----- Chris? Can you review and apply the patch?