In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/7ce1b4c45d9211e3a1d1630a5d0294b7f86ea037?hp=494cc49e66f7e0e27ee0cefe230f5fc2a4458e84>

- Log -----------------------------------------------------------------
commit 7ce1b4c45d9211e3a1d1630a5d0294b7f86ea037
Author: Tony Cook <t...@develop-help.com>
Date:   Tue Sep 8 11:03:16 2015 +1000

    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.
-----------------------------------------------------------------------

Summary of changes:
 Porting/checkAUTHORS.pl | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Porting/checkAUTHORS.pl b/Porting/checkAUTHORS.pl
index 8682f96..155b8d6 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";
         }
 
     }

--
Perl5 Master Repository

Reply via email to