diff options
author | ph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15> | 2012-07-06 08:55:10 +0000 |
---|---|---|
committer | ph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15> | 2012-07-06 08:55:10 +0000 |
commit | f89f09c645ad87f321dcb2c446d0f0d71be488ea (patch) | |
tree | 0e839222e6eae83714a452df96f83515db2b874b /testdata | |
parent | 03ae083c6793d4105e479d1d9a30536fa3fbd28a (diff) | |
download | pcre-f89f09c645ad87f321dcb2c446d0f0d71be488ea.tar.gz |
Fix 2 incorrect #ifdefs in pcre_study.c.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@983 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'testdata')
-rw-r--r-- | testdata/testinput18 | 5 | ||||
-rw-r--r-- | testdata/testoutput18 | 16 |
2 files changed, 20 insertions, 1 deletions
diff --git a/testdata/testinput18 b/testdata/testinput18 index d0e46dd..add1836 100644 --- a/testdata/testinput18 +++ b/testdata/testinput18 @@ -194,6 +194,11 @@ correctly, but that messes up comparisons). --/ /\h*A/SI8 CDBABC + \x{2000}ABC + +/\R*A/SI8 + CDBABC + \x{2028}A /\v+A/SI8 diff --git a/testdata/testoutput18 b/testdata/testoutput18 index adc3ab4..dd8b592 100644 --- a/testdata/testoutput18 +++ b/testdata/testoutput18 @@ -692,9 +692,23 @@ Options: utf No first char Need char = 'A' Subject length lower bound = 1 -Starting byte set: \x09 \x20 A \xa0 +Starting byte set: \x09 \x20 A \xa0 \xff CDBABC 0: A + \x{2000}ABC + 0: \x{2000}A + +/\R*A/SI8 +Capturing subpattern count = 0 +Options: utf +No first char +Need char = 'A' +Subject length lower bound = 1 +Starting byte set: \x0a \x0b \x0c \x0d A \x85 \xff + CDBABC + 0: A + \x{2028}A + 0: \x{2028}A /\v+A/SI8 Capturing subpattern count = 0 |