summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2007-11-16 19:58:26 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2007-11-16 19:58:26 +0000
commit9b74a6dd7d56bbff011d81bac8716b209560a022 (patch)
tree9472bcb4c4386d696d7ce9bb2136322d0b24eb66
parente94b4c5ecbd32d8d425fae1bb82c41dfd9ce5cee (diff)
downloadpcre-9b74a6dd7d56bbff011d81bac8716b209560a022.tar.gz
Missed test data for previous change.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@271 2f5784b3-3f2a-0410-8824-cb99058d5e15
-rw-r--r--testdata/testinput210
-rw-r--r--testdata/testoutput213
2 files changed, 23 insertions, 0 deletions
diff --git a/testdata/testinput2 b/testdata/testinput2
index da3b01e..828fe45 100644
--- a/testdata/testinput2
+++ b/testdata/testinput2
@@ -2543,4 +2543,14 @@ a random value. /Ix
/(?-+a)/
+/(?(-1))/
+
+/(?(+10))/
+
+/(?(10))/
+
+/(?(+2))()()/
+
+/(?(2))()()/
+
/ End of testinput2 /
diff --git a/testdata/testoutput2 b/testdata/testoutput2
index cb69551..5cd103a 100644
--- a/testdata/testoutput2
+++ b/testdata/testoutput2
@@ -9318,4 +9318,17 @@ Failed: digit expected after (?+ at offset 3
/(?-+a)/
Failed: unrecognized character after (? or (?- at offset 3
+/(?(-1))/
+Failed: reference to non-existent subpattern at offset 6
+
+/(?(+10))/
+Failed: reference to non-existent subpattern at offset 7
+
+/(?(10))/
+Failed: reference to non-existent subpattern at offset 6
+
+/(?(+2))()()/
+
+/(?(2))()()/
+
/ End of testinput2 /