blob: 8777986c5504a150fae976974b86d68ac5c608b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!./perl -w
# Test that there are no missing authors in AUTHORS
BEGIN {
@INC = '..' if -f '../TestInit.pm';
}
use TestInit 'T'; # T is chdir to the top level
use strict;
require 't/test.pl';
find_git_or_skip('all');
my $dotslash = $^O eq "MSWin32" ? ".\\" : "./";
system("git log --pretty=fuller | ${dotslash}perl Porting/checkAUTHORS.pl --tap -");
# EOF
|