bug-wget
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Bug-wget] Testsuite summary for wget 1.19.4: # FAIL: 8


From: Tim Rühsen
Subject: Re: [Bug-wget] Testsuite summary for wget 1.19.4: # FAIL: 8
Date: Thu, 25 Jan 2018 13:10:18 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.2

Thanks for the report.

This happens because we try to print a numeric IP address:

warn "Failed to resolve $$addr, using $srcdir/certs/wgethosts\n";

But then this is printed only if 'localhost' can't be resolved to
127.0.0.1. What is it in your case ?


Could you apply this patch and see what that test prints out ?

diff --git a/tests/Test-https-pfs.px b/tests/Test-https-pfs.px
index 627bd678..d28eec69 100755
--- a/tests/Test-https-pfs.px
+++ b/tests/Test-https-pfs.px
@@ -47,7 +47,7 @@ unless ($addr)
 }
 unless (inet_ntoa($addr) =~ "127.0.0.1")
 {
-    warn "Failed to resolve $$addr, using $srcdir/certs/wgethosts\n";
+    warn "Unexpected IP for localhost: ".inet_ntoa($addr)."\n";
     exit 77;
 }



With Best Regards, Tim



On 01/25/2018 07:47 AM, David McInnis wrote:
> For ArchLinux.
> 
> -Dave

Attachment: signature.asc
Description: OpenPGP digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]