From 199fc8cde4ec30a56626c0765b3b0efacb327664 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sat, 10 Feb 2018 15:17:29 -0700 Subject: [PATCH] podcheck.t: Skip core files in all directories Commit 446f12a860e9ab9b234cd6796e937fbff85adf5c only skipped files named 'core' in the top directory. This should skip them in any directory. --- t/porting/podcheck.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/porting/podcheck.t b/t/porting/podcheck.t index b35f4ce..c346416 100644 --- a/t/porting/podcheck.t +++ b/t/porting/podcheck.t @@ -400,7 +400,6 @@ my %excluded_files = ( canonicalize('cpan/Pod-Perldoc/corpus/perlfunc.pod') => 1, canonicalize('cpan/Pod-Perldoc/corpus/utf8.pod') => 1, canonicalize("lib/unicore/mktables") => 1, - canonicalize("core") => 1, ); # This list should not include anything for which case sensitivity is @@ -440,6 +439,7 @@ my $non_pods = qr/ (?: \. | ^cxx\$demangler_db\.$ # VMS name mangler database | ^typemap\.?$ # typemap files | ^(?i:Makefile\.PL)$ + | ^core$ /x; # Matches something that looks like a file name, but is enclosed in C<...> -- 1.8.3.1