Skip to content

Commit

Permalink
podcheck.t: Skip core files in all directories
Browse files Browse the repository at this point in the history
Commit 446f12a only skipped files named
'core' in the top directory.  This should skip them in any directory.
  • Loading branch information
khwilliamson committed Feb 10, 2018
1 parent 446f12a commit 199fc8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/porting/podcheck.t
Expand Up @@ -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
Expand Down Expand Up @@ -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<...>
Expand Down

0 comments on commit 199fc8c

Please sign in to comment.