Skip Menu |

This queue is for tickets about the X-Tiny CPAN distribution.

Report information
The Basics
Id: 128809
Status: resolved
Priority: 0/
Queue: X-Tiny

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

Bug Information
Severity: (no value)
Broken in: 0.15
Fixed in: 0.16



Subject: 'overload.pm is not loaded by default' may fail
On some of my smokers I see the following test failure: ... # Failed test 'overload.pm is not loaded by default' # at t/loader.t line 12. # Looks like you failed 1 test of 6. t/loader.t .. Dubious, test returned 1 (wstat 256, 0x100) Failed 1/6 subtests ... Unfortunately statistical analysis does not provide any information about the reasons. My guess is that some of the toolchain modules (Test::More) has some optional prereqs, which, if available, would also load overload.pm. To save this test, one can do the following: - load Test::More as early as possible - check (in a BEGIN block) if overload.pm was already loaded - if it is loaded early, then skip the overload test case
RT-Send-CC: exodist [...] cpan.org
On 2019-03-10 11:18:05, SREZIC wrote: Show quoted text
> On some of my smokers I see the following test failure: > > ... > # Failed test 'overload.pm is not loaded by default' > # at t/loader.t line 12. > # Looks like you failed 1 test of 6. > t/loader.t .. > Dubious, test returned 1 (wstat 256, 0x100) > Failed 1/6 subtests > ... > > Unfortunately statistical analysis does not provide any information > about the reasons. My guess is that some of the toolchain modules > (Test::More) has some optional prereqs, which, if available, would > also load overload.pm.
It can be reproduced if the newest versions of the following modules are installed: - Test::More - Term::Table - Term::Size::Any - Unicode::LineBreak Show quoted text
> To save this test, one can do the following: > - load Test::More as early as possible > - check (in a BEGIN block) if overload.pm was already loaded > - if it is loaded early, then skip the overload test case
Subject: Re: [rt.cpan.org #128809] 'overload.pm is not loaded by default' may fail
Date: Sun, 10 Mar 2019 12:24:52 -0400
To: bug-X-Tiny [...] rt.cpan.org
From: Felipe Gasper <felipe [...] felipegasper.com>
Show quoted text
> On Mar 10, 2019, at 11:27 AM, Slaven_Rezic via RT <bug-X-Tiny@rt.cpan.org> wrote: > > It can be reproduced if the newest versions of the following modules are installed: > > - Test::More > - Term::Table > - Term::Size::Any > - Unicode::LineBreak
Term::Size::Any doesn’t appear to be needed to reproduce the breakage. I’ll see about adjusting the test. -F
Subject: Re: [rt.cpan.org #128809] 'overload.pm is not loaded by default' may fail
Date: Sun, 10 Mar 2019 14:51:00 -0400
To: bug-X-Tiny [...] rt.cpan.org
From: Felipe Gasper <felipe [...] felipegasper.com>
The version I pushed earlier today should resolve this. -FG Show quoted text
> On Mar 10, 2019, at 11:27 AM, Slaven_Rezic via RT <bug-X-Tiny@rt.cpan.org> wrote: > > Queue: X-Tiny > Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=128809 > >
>> On 2019-03-10 11:18:05, SREZIC wrote: >> On some of my smokers I see the following test failure: >> >> ... >> # Failed test 'overload.pm is not loaded by default' >> # at t/loader.t line 12. >> # Looks like you failed 1 test of 6. >> t/loader.t .. >> Dubious, test returned 1 (wstat 256, 0x100) >> Failed 1/6 subtests >> ... >> >> Unfortunately statistical analysis does not provide any information >> about the reasons. My guess is that some of the toolchain modules >> (Test::More) has some optional prereqs, which, if available, would >> also load overload.pm.
> > It can be reproduced if the newest versions of the following modules are installed: > > - Test::More > - Term::Table > - Term::Size::Any > - Unicode::LineBreak >
>> To save this test, one can do the following: >> - load Test::More as early as possible >> - check (in a BEGIN block) if overload.pm was already loaded >> - if it is loaded early, then skip the overload test case