# Test that there are no missing Maintainers in Maintainers.PL
-
BEGIN {
- chdir 't' if -d 't';
- @INC = qw(../lib ../Porting);
+ # This test script uses a slightly atypical invocation of the 'standard'
+ # core testing setup stanza.
+ # The existing porting tools which manage the Maintainers file all
+ # expect to be run from the root
+ # XXX that should be fixed
+
+ chdir '..' unless -d 't';
+ @INC = qw(lib Porting);
}
use strict;
use warnings;
use Maintainers qw(show_results process_options finish_tap_output);
-chdir(".."); # The existing porting tools all expect to be run from the root
-# XXX that should be fixed
{
local @ARGV = qw|--tap-output --checkmani|;