This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
pp_sys.c: pp_select UTF8 cleanup.
[perl5.git] / t / porting / authors.t
1 #!./perl -w
2 # Test that there are no missing authors in AUTHORS
3
4 BEGIN {
5     @INC = '..' if -f '../TestInit.pm';
6 }
7 use TestInit qw(T A); # T is chdir to the top level, A makes paths absolute
8 use strict;
9
10 require 't/test.pl';
11 find_git_or_skip('all');
12
13 system("git log --pretty=fuller | $^X Porting/checkAUTHORS.pl --tap -");
14
15 # EOF