summaryrefslogtreecommitdiff
path: root/testdata
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2015-03-06 11:59:39 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2015-03-06 11:59:39 +0000
commit62dfe27a6a86cdacf9e2a3e118d8f0c9d44cea25 (patch)
treeb169bbbc2247e11e0764c12d07f9d73b2eda0a00 /testdata
parent08025021c3fe75fae0d3a667aefd11dbace5f151 (diff)
downloadpcre-62dfe27a6a86cdacf9e2a3e118d8f0c9d44cea25.tar.gz
Fix bad compile of patterns like /[A-`]/i8 where the range contains
characters with multiple other cases and the ranges adjoin. git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1532 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'testdata')
-rw-r--r--testdata/testinput63
-rw-r--r--testdata/testoutput64
2 files changed, 7 insertions, 0 deletions
diff --git a/testdata/testinput6 b/testdata/testinput6
index 82c3ed5..7c492ad 100644
--- a/testdata/testinput6
+++ b/testdata/testinput6
@@ -1496,4 +1496,7 @@
/^s?c/mi8
scat
+/[A-`]/i8
+ abcdefghijklmno
+
/-- End of testinput6 --/
diff --git a/testdata/testoutput6 b/testdata/testoutput6
index a990ba1..a5de32a 100644
--- a/testdata/testoutput6
+++ b/testdata/testoutput6
@@ -2461,4 +2461,8 @@ No match
scat
0: sc
+/[A-`]/i8
+ abcdefghijklmno
+ 0: a
+
/-- End of testinput6 --/