| 1 |
#! /usr/bin/perl |
#! /usr/bin/env perl |
| 2 |
|
|
| 3 |
# Program for testing regular expressions with perl to check that PCRE handles |
# Program for testing regular expressions with perl to check that PCRE handles |
| 4 |
# them the same. This is the version that supports /8 for UTF-8 testing. As it |
# them the same. This is the version that supports /8 for UTF-8 testing. As it |
| 5 |
# stands, it requires at least Perl 5.8 for UTF-8 support. For Perl 5.6, it |
# stands, it requires at least Perl 5.8 for UTF-8 support. However, it needs to |
| 6 |
# can be used as is for non-UTF-8 testing, but you have to uncomment the |
# have "use utf8" at the start for running the UTF-8 tests, but *not* for the |
| 7 |
# "use utf8" lines in order to to UTF-8 stuff (and you mustn't uncomment them |
# other tests. The only way I've found for doing this is to cat this line in |
| 8 |
# for non-UTF-8 use). |
# explicitly in the RunPerlTest script. |
|
|
|
|
use locale; |
|
| 9 |
|
|
| 10 |
|
# use locale; # With this included, \x0b matches \s! |
| 11 |
|
|
| 12 |
# Function for turning a string into a string of printing chars. There are |
# Function for turning a string into a string of printing chars. There are |
| 13 |
# currently problems with UTF-8 strings; this fudges round them. |
# currently problems with UTF-8 strings; this fudges round them. |
| 17 |
|
|
| 18 |
if ($utf8) |
if ($utf8) |
| 19 |
{ |
{ |
|
# use utf8; <=============== For UTF-8 in Perl 5.6 |
|
| 20 |
@p = unpack('U*', $_[0]); |
@p = unpack('U*', $_[0]); |
| 21 |
foreach $c (@p) |
foreach $c (@p) |
| 22 |
{ |
{ |
| 38 |
} |
} |
| 39 |
|
|
| 40 |
|
|
|
|
|
| 41 |
# Read lines from named file or stdin and write to named file or stdout; lines |
# Read lines from named file or stdin and write to named file or stdout; lines |
| 42 |
# consist of a regular expression, in delimiters and optionally followed by |
# consist of a regular expression, in delimiters and optionally followed by |
| 43 |
# options, followed by a set of test data, terminated by an empty line. |
# options, followed by a set of test data, terminated by an empty line. |
| 87 |
|
|
| 88 |
$showrest = ($pattern =~ s/\+(?=[a-z]*$)//); |
$showrest = ($pattern =~ s/\+(?=[a-z]*$)//); |
| 89 |
|
|
| 90 |
# The private /8 modifier means "operate in UTF-8". Currently, Perl |
# Remove /8 from a UTF-8 pattern. |
|
# has bugs that we try to work around using this flag. |
|
| 91 |
|
|
| 92 |
$utf8 = ($pattern =~ s/8(?=[a-z]*$)//); |
$utf8 = $pattern =~ s/8(?=[a-z]*$)//; |
| 93 |
|
|
| 94 |
# Check that the pattern is valid |
# Remove /J from a pattern with duplicate names. |
| 95 |
|
|
| 96 |
if ($utf8) |
$pattern =~ s/J(?=[a-z]*$)//; |
| 97 |
{ |
|
| 98 |
# use utf8; <=============== For UTF-8 in Perl 5.6 |
# Check that the pattern is valid |
|
eval "\$_ =~ ${pattern}"; |
|
|
} |
|
|
else |
|
|
{ |
|
|
eval "\$_ =~ ${pattern}"; |
|
|
} |
|
| 99 |
|
|
| 100 |
|
eval "\$_ =~ ${pattern}"; |
| 101 |
if ($@) |
if ($@) |
| 102 |
{ |
{ |
| 103 |
printf $outfile "Error: $@"; |
printf $outfile "Error: $@"; |
| 131 |
s/^\s+//; |
s/^\s+//; |
| 132 |
|
|
| 133 |
last if ($_ eq ""); |
last if ($_ eq ""); |
|
|
|
| 134 |
$x = eval "\"$_\""; # To get escapes processed |
$x = eval "\"$_\""; # To get escapes processed |
| 135 |
|
|
| 136 |
# Empty array for holding results, then do the matching. |
# Empty array for holding results, ensure $REGERROR and $REGMARK are |
| 137 |
|
# unset, then do the matching. |
| 138 |
|
|
| 139 |
@subs = (); |
@subs = (); |
| 140 |
|
|
| 157 |
"push \@subs,\$16;" . |
"push \@subs,\$16;" . |
| 158 |
"push \@subs,\$'; }"; |
"push \@subs,\$'; }"; |
| 159 |
|
|
| 160 |
if ($utf8) |
undef $REGERROR; |
| 161 |
{ |
undef $REGMARK; |
| 162 |
# use utf8; <=============== For UTF-8 in Perl 5.6 |
|
| 163 |
eval "${cmd} (\$x =~ ${pattern}) {" . $pushes; |
eval "${cmd} (\$x =~ ${pattern}) {" . $pushes; |
|
} |
|
|
else |
|
|
{ |
|
|
eval "${cmd} (\$x =~ ${pattern}) {" . $pushes; |
|
|
} |
|
| 164 |
|
|
| 165 |
if ($@) |
if ($@) |
| 166 |
{ |
{ |
| 169 |
} |
} |
| 170 |
elsif (scalar(@subs) == 0) |
elsif (scalar(@subs) == 0) |
| 171 |
{ |
{ |
| 172 |
printf $outfile "No match\n"; |
printf $outfile "No match"; |
| 173 |
|
if (defined $REGERROR && $REGERROR != 1) |
| 174 |
|
{ print $outfile (", mark = $REGERROR"); } |
| 175 |
|
printf $outfile "\n"; |
| 176 |
} |
} |
| 177 |
else |
else |
| 178 |
{ |
{ |
| 193 |
} |
} |
| 194 |
splice(@subs, 0, 18); |
splice(@subs, 0, 18); |
| 195 |
} |
} |
| 196 |
|
if (defined $REGMARK && $REGMARK != 1) |
| 197 |
|
{ print $outfile ("MK: $REGMARK\n"); } |
| 198 |
} |
} |
| 199 |
} |
} |
| 200 |
} |
} |