diff options
author | Tony Cook <tony@develop-help.com> | 2015-09-08 11:03:16 +1000 |
---|---|---|
committer | Tony Cook <tony@develop-help.com> | 2015-09-08 15:21:36 +1000 |
commit | 7ce1b4c45d9211e3a1d1630a5d0294b7f86ea037 (patch) | |
tree | 3ee0b7b5eafb2fbdf09e36d1aa90661da5ea1785 /Porting | |
parent | 494cc49e66f7e0e27ee0cefe230f5fc2a4458e84 (diff) | |
download | perl-7ce1b4c45d9211e3a1d1630a5d0294b7f86ea037.tar.gz |
report missing authors to stderr
So if authors.t fails the cause is obvious from the test output
*without* having to perform a verbose run.
Diffstat (limited to 'Porting')
-rwxr-xr-x | Porting/checkAUTHORS.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Porting/checkAUTHORS.pl b/Porting/checkAUTHORS.pl index 8682f96950..155b8d616e 100755 --- a/Porting/checkAUTHORS.pl +++ b/Porting/checkAUTHORS.pl @@ -258,6 +258,7 @@ sub display_test_output { print "ok $count - ".$real_names->{$_} ." $_\n"; } else { print "not ok $count - Contributor not found in AUTHORS: $_ ".($real_names->{$_} || '???' )."\n"; + print STDERR ($real_names->{$_} || '???' )." <$_> not found in AUTHORS\n"; } } |