diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-09-27 07:59:58 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-09-27 07:59:58 +0100 |
commit | da9d679792344414c2d670008c6c80fffbb2e4b0 (patch) | |
tree | 8a2f49c2361c41795b677f3985e6e9ec847f0f54 /cpan/IPC-SysV | |
parent | deae7ad8da4c9f98bf5d8904f0cd08a1948f1107 (diff) | |
download | perl-da9d679792344414c2d670008c6c80fffbb2e4b0.tar.gz |
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.
Diffstat (limited to 'cpan/IPC-SysV')
-rw-r--r-- | cpan/IPC-SysV/t/ipcsysv.t | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/cpan/IPC-SysV/t/ipcsysv.t b/cpan/IPC-SysV/t/ipcsysv.t index a83c7bbae0..8c167850ee 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; |