In perl.git, the branch blead has been updated

<https://perl5.git.perl.org/perl.git/commitdiff/0d40ea5e98ce5de7a1a2facb17e53e315155a577?hp=8e48a48cc5006a06110dd20994b419be393e42ce>

- Log -----------------------------------------------------------------
commit 0d40ea5e98ce5de7a1a2facb17e53e315155a577
Author: Karl Williamson <[email protected]>
Date:   Sat Mar 23 21:29:51 2019 -0600

    Remove zero length valgrind files at end.
    
    This resolves [perl #131135]

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

Summary of changes:
 t/TEST | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/t/TEST b/t/TEST
index fb293d4141..a9c844f605 100755
--- a/t/TEST
+++ b/t/TEST
@@ -982,6 +982,11 @@ sub _cleanup_valgrind {
        unlink _find_files('cachegrind.out.\d+$',
                     qw ( ../t ../cpan ../ext ../dist/ ));
     }
+    elsif ($$toolnm eq 'valgrind') {
+       # Remove empty, hence non-error, output files
+       unlink grep { -z } _find_files('valgrind-current',
+                    qw ( ../t ../cpan ../ext ../dist/ ));
+    }
 }
 
 # Generate regexps of known bad filenames / skips from 
Porting/deparse-skips.txt

-- 
Perl5 Master Repository

Reply via email to