This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
474d0ac
)
exclude autodoc.pl from pod checks
author
David Mitchell
<davem@iabyn.com>
Wed, 25 Aug 2010 13:16:26 +0000
(14:16 +0100)
committer
David Mitchell
<davem@iabyn.com>
Wed, 25 Aug 2010 13:16:26 +0000
(14:16 +0100)
This script contains snippets of pod in here-doc sections which
gives false positives
t/porting/podcheck.t
patch
|
blob
|
blame
|
history
diff --git
a/t/porting/podcheck.t
b/t/porting/podcheck.t
index
87f6f7f
..
3fbe27c
100644
(file)
--- a/
t/porting/podcheck.t
+++ b/
t/porting/podcheck.t
@@
-41,6
+41,7
@@
while (<$m>) {
my ($file, $separator) = /^(\S+)(\s+)/;
next if $file =~ /^cpan\//;
next unless ($file =~ /\.(?:pm|pod|pl)$/);
+ next if $file eq 'autodoc.pl';
push @files, $file;
};
@files = sort @files; # so we get consistent results