summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Cook <tony@develop-help.com>2015-09-08 11:03:16 +1000
committerTony Cook <tony@develop-help.com>2015-09-08 15:21:36 +1000
commit7ce1b4c45d9211e3a1d1630a5d0294b7f86ea037 (patch)
tree3ee0b7b5eafb2fbdf09e36d1aa90661da5ea1785
parent494cc49e66f7e0e27ee0cefe230f5fc2a4458e84 (diff)
downloadperl-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.
-rwxr-xr-xPorting/checkAUTHORS.pl1
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";
}
}