summaryrefslogtreecommitdiff
path: root/testdata
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2011-07-29 15:56:39 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2011-07-29 15:56:39 +0000
commitc07cf4806c88b0e11d678fd35977f4b3663b2295 (patch)
tree5705389d28b9cd7791e66e3a2487adda8859693e /testdata
parent5eb8d51bae2ddf98313629134e88a389fe319605 (diff)
downloadpcre-c07cf4806c88b0e11d678fd35977f4b3663b2295.tar.gz
Allow all characters except closing parens in MARK:NAME etc.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@643 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'testdata')
-rw-r--r--testdata/testinput1110
-rw-r--r--testdata/testoutput1117
2 files changed, 27 insertions, 0 deletions
diff --git a/testdata/testinput11 b/testdata/testinput11
index 12a36f6..120594e 100644
--- a/testdata/testinput11
+++ b/testdata/testinput11
@@ -666,4 +666,14 @@ however, we need the complication for Perl. ---/
/((?(R1)a+|(?1)b))/
aaaabcde
+/a(*:any
+name)/K
+ abc
+
+/a(*:a\x{1234}b)/8K
+ abc
+
+/a(*:a£b)/8K
+ abc
+
/-- End of testinput11 --/
diff --git a/testdata/testoutput11 b/testdata/testoutput11
index bbb432f..3bcd67f 100644
--- a/testdata/testoutput11
+++ b/testdata/testoutput11
@@ -1252,4 +1252,21 @@ MK: M
0: aaaab
1: aaaab
+/a(*:any
+name)/K
+ abc
+ 0: a
+MK: any
+name
+
+/a(*:a\x{1234}b)/8K
+ abc
+ 0: a
+MK: a\x{1234}b
+
+/a(*:a£b)/8K
+ abc
+ 0: a
+MK: a£b
+
/-- End of testinput11 --/