In perl.git, the branch blead has been updated

<https://perl5.git.perl.org/perl.git/commitdiff/00c74bbcad4bd066b6b2d9a0ca9ac37da1bfd9fe?hp=1e3f5c479dff805236e9739c454a4d7fb9893db9>

- Log -----------------------------------------------------------------
commit 00c74bbcad4bd066b6b2d9a0ca9ac37da1bfd9fe
Author: Karl Williamson <k...@cpan.org>
Date:   Mon Jun 3 13:10:51 2019 -0600

    podcheck.t: Don't output warnings when extracting pod
    
    This turns off warnings while we are extracting pod.  If we are
    reporting problems, these will be output at the end.

-----------------------------------------------------------------------

Summary of changes:
 t/porting/podcheck.t | 1 +
 1 file changed, 1 insertion(+)

diff --git a/t/porting/podcheck.t b/t/porting/podcheck.t
index 8c1e7d905b..9d83703803 100644
--- a/t/porting/podcheck.t
+++ b/t/porting/podcheck.t
@@ -1536,6 +1536,7 @@ sub extract_pod {   # Extracts just the pod from a file; 
returns undef if file
         use Pod::Simple::JustPod;
         my $parser = Pod::Simple::JustPod->new();
         $parser->no_errata_section(1);
+        $parser->no_whining(1);
         $parser->source_filename($filename);
         my $output;
         $parser->output_string( \$output );

-- 
Perl5 Master Repository

Reply via email to