#!./perl -w
BEGIN {
chdir
'..'
unless
-d
't'
;
@INC
=
qw(lib Porting)
;
require
'./t/test.pl'
;
}
if
(
$Config
{usecrosscompile} ) {
skip_all(
"Odd failures during cross-compilation"
);
}
if
(
$Config
{ccflags} =~ /-DPERL_EXTERNAL_GLOB/) {
skip_all
"Maintainers doesn't currently work for '-DPERL_EXTERNAL_GLOB'"
;
}
if
($^O eq
'VMS'
) {
skip_all
"home-grown glob doesn't handle fancy patterns"
;
}
use
Maintainers
qw(show_results process_options finish_tap_output)
;
{
local
@ARGV
=
qw|--checkmani|
;
show_results(process_options());
}
{
local
@ARGV
=
qw|--checkmani lib/ ext/|
;
show_results(process_options());
}
finish_tap_output();