summaryrefslogtreecommitdiff
path: root/testdata
diff options
context:
space:
mode:
Diffstat (limited to 'testdata')
-rw-r--r--testdata/testinput114
-rw-r--r--testdata/testoutput123
2 files changed, 37 insertions, 0 deletions
diff --git a/testdata/testinput1 b/testdata/testinput1
index 5c65ed6..61fd20b 100644
--- a/testdata/testinput1
+++ b/testdata/testinput1
@@ -4291,4 +4291,18 @@
/(?(?=c)c|d)*+Y/
XcccddYX
+/^(a{2,3}){2,}+a/
+ aaaaaaa
+ ** Failers
+ aaaaaa
+ aaaaaaaaa
+
+/^(a{2,3})++a/
+ ** Failers
+ aaaaaa
+
+/^(a{2,3})*+a/
+ ** Failers
+ aaaaaa
+
/-- End of testinput1 --/
diff --git a/testdata/testoutput1 b/testdata/testoutput1
index 54c0bf2..2557fe2 100644
--- a/testdata/testoutput1
+++ b/testdata/testoutput1
@@ -7012,4 +7012,27 @@ No match
XcccddYX
0: cccddY
+/^(a{2,3}){2,}+a/
+ aaaaaaa
+ 0: aaaaaaa
+ 1: aaa
+ ** Failers
+No match
+ aaaaaa
+No match
+ aaaaaaaaa
+No match
+
+/^(a{2,3})++a/
+ ** Failers
+No match
+ aaaaaa
+No match
+
+/^(a{2,3})*+a/
+ ** Failers
+No match
+ aaaaaa
+No match
+
/-- End of testinput1 --/