From: Nicholas Clark Date: Sun, 27 Sep 2009 06:59:58 +0000 (+0100) Subject: Remove IPC::SysV from the list of PERL_CORE=1 testing exceptions. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=da9d679792344414c2d670008c6c80fffbb2e4b0;p=p5sagit%2Fp5-mst-13.2.git 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. --- 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,