In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/da9d679792344414c2d670008c6c80fffbb2e4b0?hp=deae7ad8da4c9f98bf5d8904f0cd08a1948f1107>
- Log ----------------------------------------------------------------- commit da9d679792344414c2d670008c6c80fffbb2e4b0 Author: Nicholas Clark <[email protected]> Date: Sun Sep 27 07:59:58 2009 +0100 Remove IPC::SysV from the list of PERL_CORE=1 testing exceptions. One of its tests was forcibly setting @INC when $ENV{PERL_CORE} is true. That's not just unnecessary now, it's actively counter-productive, because tests in @ext are running from their extension's directory, not the core's t directory. ----------------------------------------------------------------------- Summary of changes: cpan/IPC-SysV/t/ipcsysv.t | 5 ----- t/TEST | 1 - 2 files changed, 0 insertions(+), 6 deletions(-) diff --git a/cpan/IPC-SysV/t/ipcsysv.t b/cpan/IPC-SysV/t/ipcsysv.t index a83c7bb..8c16785 100644 --- a/cpan/IPC-SysV/t/ipcsysv.t +++ b/cpan/IPC-SysV/t/ipcsysv.t @@ -15,11 +15,6 @@ ################################################################################ BEGIN { - if ($ENV{'PERL_CORE'}) { - chdir 't' if -d 't'; - @INC = '../lib' if -d '../lib' && -d '../ext'; - } - require Test::More; import Test::More; require Config; import Config; diff --git a/t/TEST b/t/TEST index 0ee0dd2..04355f4 100755 --- a/t/TEST +++ b/t/TEST @@ -36,7 +36,6 @@ my %temp_no_core = '../cpan/Devel-PPPort' => 1, '../cpan/Getopt-Long' => 1, '../ext/IO-Compress' => 1, - '../cpan/IPC-SysV' => 1, '../ext/Math-BigInt' => 1, '../ext/Math-BigRat' => 1, '../ext/MIME-Base64' => 1, -- Perl5 Master Repository
