summaryrefslogtreecommitdiff
path: root/srclib/pcre/testdata/testinput3
diff options
context:
space:
mode:
Diffstat (limited to 'srclib/pcre/testdata/testinput3')
-rw-r--r--srclib/pcre/testdata/testinput334
1 files changed, 33 insertions, 1 deletions
diff --git a/srclib/pcre/testdata/testinput3 b/srclib/pcre/testdata/testinput3
index 0c884d3b7c..d3bd74fdd3 100644
--- a/srclib/pcre/testdata/testinput3
+++ b/srclib/pcre/testdata/testinput3
@@ -1689,4 +1689,36 @@
<a href=\"abcd xyz pqr\" cats
<a href = \'abcd xyz pqr\' cats
-/ End of test input /
+/((Z)+|A)*/
+ ZABCDEFG
+
+/(Z()|A)*/
+ ZABCDEFG
+
+/(Z(())|A)*/
+ ZABCDEFG
+
+/((?>Z)+|A)*/
+ ZABCDEFG
+
+/((?>)+|A)*/
+ ZABCDEFG
+
+/a*/g
+ abbab
+
+/^[a-\d]/
+ abcde
+ -things
+ 0digit
+ *** Failers
+ bcdef
+
+/^[\d-a]/
+ abcde
+ -things
+ 0digit
+ *** Failers
+ bcdef
+
+/ End of testinput3 /