Skip Menu |

This queue is for tickets about the POE-Component-Logger CPAN distribution.

Report information
The Basics
Id: 116620
Status: open
Priority: 0/
Queue: POE-Component-Logger

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

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



Subject: Core modules and tools no longer search "." for optional modules
Tests fail with perl 5.22.3-RC2 and perl 5.24.1-RC2, very probably because of an incompatible change regarding "." in @INC. A sample fail report: http://www.cpantesters.org/cpan/report/23f6f12e-5510-11e6-a313-dba99a8417f4 The possibly relevant perldelta entry: https://metacpan.org/pod/release/SHAY/perl-5.22.3-RC2/pod/perldelta.pod#Core-modules-and-tools-no-longer-search-.-for-optional-modules
On Mon Aug 01 02:48:16 2016, SREZIC wrote: Show quoted text
> Tests fail with perl 5.22.3-RC2 and perl 5.24.1-RC2, very probably > because of an incompatible change regarding "." in @INC. > > A sample fail report: http://www.cpantesters.org/cpan/report/23f6f12e- > 5510-11e6-a313-dba99a8417f4 > > The possibly relevant perldelta entry: > https://metacpan.org/pod/release/SHAY/perl-5.22.3- > RC2/pod/perldelta.pod#Core-modules-and-tools-no-longer-search-.-for- > optional-modules
Patch.
Subject: open_HAcuz8Sw.txt
diff -rup POE-Component-Logger-1.10-0-orig/t/11pre-log2.t POE-Component-Logger-1.10-0/t/11pre-log2.t --- POE-Component-Logger-1.10-0-orig/t/11pre-log2.t 2010-10-22 04:42:22.000000000 -0700 +++ POE-Component-Logger-1.10-0/t/11pre-log2.t 2016-08-07 13:12:16.000000000 -0700 @@ -1,6 +1,7 @@ # Test our Log::Dispatch/Log::Dispatch::Config testing infrastructure # Author: Olivier Mengué <dolmen@cpan.org> +use lib '.'; use strict; use warnings; use Test::NoWarnings; diff -rup POE-Component-Logger-1.10-0-orig/t/15simple.t POE-Component-Logger-1.10-0/t/15simple.t --- POE-Component-Logger-1.10-0-orig/t/15simple.t 2010-10-26 14:43:51.000000000 -0700 +++ POE-Component-Logger-1.10-0/t/15simple.t 2016-08-07 13:12:32.000000000 -0700 @@ -1,6 +1,7 @@ # Test our Log::Dispatch/Log::Dispatch::Config testing infrastructure # Author: Olivier Mengué <dolmen@cpan.org> +use lib '.'; use strict; use warnings; use Test::NoWarnings; diff -rup POE-Component-Logger-1.10-0-orig/t/16-alias.t POE-Component-Logger-1.10-0/t/16-alias.t --- POE-Component-Logger-1.10-0-orig/t/16-alias.t 2010-10-28 14:24:12.000000000 -0700 +++ POE-Component-Logger-1.10-0/t/16-alias.t 2016-08-07 13:12:41.000000000 -0700 @@ -1,6 +1,7 @@ # Tests with an alternate session alias # Author: Olivier Mengué <dolmen@cpan.org> +use lib '.'; use strict; use warnings; diff -rup POE-Component-Logger-1.10-0-orig/t/60-RT62397.t POE-Component-Logger-1.10-0/t/60-RT62397.t --- POE-Component-Logger-1.10-0-orig/t/60-RT62397.t 2010-10-23 08:12:50.000000000 -0700 +++ POE-Component-Logger-1.10-0/t/60-RT62397.t 2016-08-07 13:12:53.000000000 -0700 @@ -1,6 +1,7 @@ # Test case for RT#62397: Logger->log does not uses $DefaultLevel synchronously # Author: Olivier Mengué <dolmen@cpan.org> +use lib '.'; use strict; use warnings; use Test::NoWarnings;