Skip Menu |

This queue is for tickets about the Data-Reuse CPAN distribution.

Report information
The Basics
Id: 76441
Status: open
Priority: 0/
Queue: Data-Reuse

People
Owner: ELIZABETH [...] cpan.org
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

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

Attachments
fail.Data-Reuse-0.08.i386-freebsd.8.0-release-p4.1333967178.95694.rpt



Subject: Fails with bleadperl
The 00reuse.t test fails with bleadperl, see the attached file. I could produce the failure on a freebsd 8.0 system with v5.15.9-85-gd005e6a and on a linux system with v5.15.9-123-gbd9cbc4 . It seems to work with the release 5.15.9, as there is at least one pass report visible here: http://matrix.cpantesters.org/?dist=Data-Reuse Regards, Slaven
Subject: fail.Data-Reuse-0.08.i386-freebsd.8.0-release-p4.1333967178.95694.rpt

Message body not shown because it is not plain text.

Subject: Re: [rt.cpan.org #76441] Fails with bleadperl
Date: Mon, 9 Apr 2012 14:28:16 +0200
To: bug-Data-Reuse [...] rt.cpan.org
From: Elizabeth Mattijsen <liz [...] dijkmat.nl>
Could you please verify that Data::Alias *does* work with blead perl? Thanks! Liz ==================== On Apr 9, 2012, at 12:33 PM, Slaven_Rezic via RT wrote: Show quoted text
> Mon Apr 09 06:33:01 2012: Request 76441 was acted upon. > Transaction: Ticket created by SREZIC > Queue: Data-Reuse > Subject: Fails with bleadperl > Broken in: 0.08 > Severity: (no value) > Owner: Nobody > Requestors: SREZIC@cpan.org > Status: new > Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=76441 > > > > The 00reuse.t test fails with bleadperl, see the attached file. I could > produce the failure on a freebsd 8.0 system with v5.15.9-85-gd005e6a and > on a linux system with v5.15.9-123-gbd9cbc4 . It seems to work with the > release 5.15.9, as there is at least one pass report visible here: > http://matrix.cpantesters.org/?dist=Data-Reuse > > Regards, > Slaven > > <fail.Data-Reuse-0.08.i386-freebsd.8.0-release-p4.1333967178.95694.rpt>
Sending the previous mail has failed. Please contact your admin, they can find more details in the logs.
Sending the previous mail has failed. Please contact your admin, they can find more details in the logs.
On Mon Apr 09 08:26:54 2012, liz@dijkmat.nl wrote: Show quoted text
> Could you please verify that Data::Alias *does* work with blead perl?
It works for me.
RT-Send-CC: andk [...] cpan.org
On Mon Apr 09 06:33:01 2012, SREZIC wrote: Show quoted text
> The 00reuse.t test fails with bleadperl, see the attached file. I could > produce the failure on a freebsd 8.0 system with v5.15.9-85-gd005e6a and > on a linux system with v5.15.9-123-gbd9cbc4 . It seems to work with the > release 5.15.9, as there is at least one pass report visible here: > http://matrix.cpantesters.org/?dist=Data-Reuse
Andreas König: Can you do a binary search between v5.15.9 and v5.15.9-85-gd005e6a?
On March 31st the cpantesters infrastructure was temproarily broken, so many of my smoke reports got lost. I still have 13 fail reports for Data::Reuse from many different perls lying around that didn't seem to make it to cpantesters: % cat /home/sand/var/ctr/done/archive/D/Data-Reuse/fail.Data-Reuse-0.08.x86_64-linux* | grep '\$\^X' |cut -c 62- | sed -e 's|/.*||' | sort v5.12.4 v5.12.4 v5.14.0 v5.14.2 v5.14.2 v5.15.5-305-g0c9fdf2 v5.15.8 v5.15.8-234-g789326d v5.15.9 v5.15.9-73-g57ef7c8 v5.15.9-75-g42d3c0f v5.15.9-76-g66c058c v5.15.9-79-gb191bee Additionally I just produced a passing test for v5.15.9-71-g6331a2f and a failing one for v5.15.9-72-gd1718a7 in the course of a bisect in that area.
Data::Reuse fails also on my FreeBSD system with 5.16.0 RC0. But http://matrix.cpantesters.org/?dist=Data-Reuse%200.09 shows that similar failures happen with older perl versions, so I don't think it's related to bleadperl. Regards, Slaven
Subject: Re: [rt.cpan.org #76441] Fails with bleadperl
Date: Tue, 22 May 2012 19:59:39 +0200
To: bug-Data-Reuse [...] rt.cpan.org
From: Elizabeth Mattijsen <liz [...] dijkmat.nl>
On May 12, 2012, at 8:29 AM, Slaven_Rezic via RT wrote: Show quoted text
> Queue: Data-Reuse > Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=76441 > > > Data::Reuse fails also on my FreeBSD system with 5.16.0 RC0. But > http://matrix.cpantesters.org/?dist=Data-Reuse%200.09 shows that similar > failures happen with older perl versions, so I don't think it's related > to bleadperl.
FWIW, I'm finally able to reproduce this on Mac OS X with 5.16.0. Looking at it now. Liz
By making small changes in the test-suite, it now seems to pass mostly. The odd thing is that I'm expecting some interaction with Test::More, or other parts of the test suite. I cannot reproduce the problem outside of the test-suite. Basically, the changes I applied were: before: is( Dumper( \@foo ), Dumper( reuse( \@foo ) ) ); after my $foo1= Dumper( \@foo ); my $foo2= Dumper( reuse( \@foo ) ); is( $foo1, $foo2 ); and all is hunky dory. When the error occurs, it is returning the result of a previous value passed to is(). Very strange!