<http://perl5.git.perl.org/perl.git/commitdiff/997990fd7b2db8e6636731fc98ed2e1e000c4718?hp=4f358de1e9bf7105dab7157d4cbbf73d0ec61f74>
- Log -----------------------------------------------------------------
commit 997990fd7b2db8e6636731fc98ed2e1e000c4718
Author: Karl Williamson <khw@cpan.org>
Date: Wed May 25 13:22:26 2016 -0600
podcheck.t: Include tr// and y// detection
These are like regular expressions, and for syntactic purposes can be
treated as such.
-----------------------------------------------------------------------
Summary of changes:
t/porting/known_pod_issues.dat | 1 -
t/porting/podcheck.t | 2 +-
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/t/porting/known_pod_issues.dat b/t/porting/known_pod_issues.dat
index 322c43d..b91b18e 100644
--- a/t/porting/known_pod_issues.dat
+++ b/t/porting/known_pod_issues.dat
@@ -342,7 +342,6 @@ pod/perlirix.pod Verbatim line length including indents exceeds 79 by 1
pod/perlmacosx.pod Verbatim line length including indents exceeds 79 by 3
pod/perlmodlib.pod Verbatim line length including indents exceeds 79 by 3
pod/perlmroapi.pod ? Should you be using L<...> instead of 1
-pod/perlop.pod ? Should you be using F<...> or maybe L<...> instead of 2
pod/perlos2.pod ? Should you be using L<...> instead of 2
pod/perlos2.pod Verbatim line length including indents exceeds 79 by 5
pod/perlos390.pod Verbatim line length including indents exceeds 79 by 2
diff --git a/t/porting/podcheck.t b/t/porting/podcheck.t
index d267f71..f0c3990 100644
--- a/t/porting/podcheck.t
+++ b/t/porting/podcheck.t
@@ -435,7 +435,7 @@ my $C_path_re = qr{ ^
# exclude various things that have slashes
# in them but aren't paths
(?!
- (?: (?: s | qr | m) / ) # regexes
+ (?: (?: s | qr | m | tr | y ) / ) # regexes
\d+/\d+ \b # probable fractions
(?: [LF] < )+
OS/2 \b
--(?: [LF] < )+
OS/2 \b
Perl5 Master Repository