📄 testlib.pm
字号:
package ExtUtils::testlib;use strict;use vars qw($VERSION);$VERSION = 6.42;use Cwd;use File::Spec;# So the tests can chdir around and not break @INC.# We use getcwd() because otherwise rel2abs will blow up under taint# mode pre-5.8. We detaint is so @INC won't be tainted. This is# no worse, and probably better, than just shoving an untainted, # relative "blib/lib" onto @INC.my $cwd;BEGIN { ($cwd) = getcwd() =~ /(.*)/;}use lib map File::Spec->rel2abs($_, $cwd), qw(blib/arch blib/lib);1;__END__=head1 NAMEExtUtils::testlib - add blib/* directories to @INC=head1 SYNOPSIS use ExtUtils::testlib;=head1 DESCRIPTIONAfter an extension has been built and before it is installed it may bedesirable to test it bypassing C<make test>. By adding use ExtUtils::testlib;to a test program the intermediate directories used by C<make> areadded to @INC.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -