Skip Menu |

This queue is for tickets about the libwww-perl CPAN distribution.

Report information
The Basics
Id: 38478
Status: resolved
Priority: 0/
Queue: libwww-perl

People
Owner: Nobody in particular
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 5.814
Fixed in: (no value)



It seems that most of the live/jigsaw tests started to fail a few days ago. See http://bbbike.radzeit.de/~slaven/cpantestersmatrix.cgi?dist=libwww-perl;maxver=;reports=1 There are currently only FreeBSD machines with this failure listed, but I could reproduce it on another Linux machine. Note that I always had live tests turned on in my smokers and this was never a problem. Regards, Slaven
I've noticed this too. I think I'll just disable all those tests for the next release. Currently I have this patch applied to my sources: commit 3e97594720dc71b5b1793155c104a0dc529c35fc Author: Gisle Aas <gisle@aas.no> Date: Thu Aug 14 11:22:06 2008 +0200 The jigsaw service isn't up to much good these days. diff --git a/t/TEST b/t/TEST index d3392a9..96bf2cc 100755 --- a/t/TEST +++ b/t/TEST @@ -33,6 +33,7 @@ else { @tests = (<base/*.t>, <html/*.t>, <robot/*.t>, <local/*.t>); push(@tests, <live/*.t>) if -f "live/ENABLED"; push(@tests, <net/*.t>) if -f "net/config.pl"; + @tests = grep !/jigsaw/, @tests; # service is not reliable any more } runtests @tests;