diff options
author | Steve Hay <SteveHay@planit.com> | 2009-10-10 14:40:26 +0100 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2009-10-11 03:12:25 +0100 |
commit | e9829d5079b73a9cc95d377bd884aa7939b2f7ec (patch) | |
tree | ddfe5ab5774086f147a1419e0348ed724a4cd92b /cpan | |
parent | fe91a837ed4e5be5edf8fcecfab7db70e0f732cd (diff) | |
download | perl-e9829d5079b73a9cc95d377bd884aa7939b2f7ec.tar.gz |
Remove test boilerpates from ExtUtils-CBuilder tests
I was obviously wrong to restore in 1051afdbc0a9e60b8f65ed22fefafd8ecf771171
what Nicholas had removed in 4d984b75f1859fc27f556ee42f31a04df42a2004 because
the tests don't work in core with the boilerplates in place.
Don't undo that which has been done by Nicholas!
Diffstat (limited to 'cpan')
-rw-r--r-- | cpan/ExtUtils-CBuilder/t/00-have-compiler.t | 6 | ||||
-rw-r--r-- | cpan/ExtUtils-CBuilder/t/01-basic.t | 9 | ||||
-rw-r--r-- | cpan/ExtUtils-CBuilder/t/02-link.t | 9 |
3 files changed, 0 insertions, 24 deletions
diff --git a/cpan/ExtUtils-CBuilder/t/00-have-compiler.t b/cpan/ExtUtils-CBuilder/t/00-have-compiler.t index cf62e97f2f..245bce571e 100644 --- a/cpan/ExtUtils-CBuilder/t/00-have-compiler.t +++ b/cpan/ExtUtils-CBuilder/t/00-have-compiler.t @@ -4,12 +4,6 @@ use File::Spec; my $perl; BEGIN { $perl = File::Spec->rel2abs($^X); - if ($ENV{PERL_CORE}) { - chdir 't' if -d 't'; - chdir '../lib/ExtUtils/CBuilder' - or die "Can't chdir to lib/ExtUtils/CBuilder: $!"; - @INC = qw(../..); - } } use strict; diff --git a/cpan/ExtUtils-CBuilder/t/01-basic.t b/cpan/ExtUtils-CBuilder/t/01-basic.t index 79a0b0c0eb..66a025f01a 100644 --- a/cpan/ExtUtils-CBuilder/t/01-basic.t +++ b/cpan/ExtUtils-CBuilder/t/01-basic.t @@ -1,14 +1,5 @@ #! perl -w -BEGIN { - if ($ENV{PERL_CORE}) { - chdir 't' if -d 't'; - chdir '../lib/ExtUtils/CBuilder' - or die "Can't chdir to lib/ExtUtils/CBuilder: $!"; - @INC = qw(../..); - } -} - use strict; use Test::More; BEGIN { diff --git a/cpan/ExtUtils-CBuilder/t/02-link.t b/cpan/ExtUtils-CBuilder/t/02-link.t index c748d3b75a..1e55f6a4e3 100644 --- a/cpan/ExtUtils-CBuilder/t/02-link.t +++ b/cpan/ExtUtils-CBuilder/t/02-link.t @@ -1,14 +1,5 @@ #! perl -w -BEGIN { - if ($ENV{PERL_CORE}) { - chdir 't' if -d 't'; - chdir '../lib/ExtUtils/CBuilder' - or die "Can't chdir to lib/ExtUtils/CBuilder: $!"; - @INC = qw(../..); - } -} - use strict; use Test::More; BEGIN { |