blob: 4a6ed26a6ef5a56601ea142730deac540fb3b548 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!./perl -w
# Test that there are no missing Maintainers in Maintainers.PL
BEGIN {
# 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);
{
local @ARGV = qw|--tap-output --checkmani|;
show_results(process_options());
}
{
local @ARGV = qw|--tap-output --checkmani lib/ ext/|;
show_results(process_options());
}
finish_tap_output();
# EOF
|