This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
494cc49
)
report missing authors to stderr
author
Tony Cook
<tony@develop-help.com>
Tue, 8 Sep 2015 01:03:16 +0000
(11:03 +1000)
committer
Tony Cook
<tony@develop-help.com>
Tue, 8 Sep 2015 05:21:36 +0000
(15:21 +1000)
So if authors.t fails the cause is obvious from the test output
*without* having to perform a verbose run.
Porting/checkAUTHORS.pl
patch
|
blob
|
blame
|
history
diff --git
a/Porting/checkAUTHORS.pl
b/Porting/checkAUTHORS.pl
index
8682f96
..
155b8d6
100755
(executable)
--- 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";
}
}