summaryrefslogtreecommitdiff
path: root/testdata/testinput1
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2020-01-26 15:31:27 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2020-01-26 15:31:27 +0000
commit4d10ecc5c3af5ddd08b98c70c00d1e6a120d864e (patch)
treead942023a9cb1ee8df35339044dfd57e92e67dfe /testdata/testinput1
parentb3f42a32920b20ae71988bc1d06a7148e0211925 (diff)
downloadpcre2-4d10ecc5c3af5ddd08b98c70c00d1e6a120d864e.tar.gz
Fix bug in processing (?(DEFINE)...) within lookbehind assertions.
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@1212 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'testdata/testinput1')
-rw-r--r--testdata/testinput113
1 files changed, 13 insertions, 0 deletions
diff --git a/testdata/testinput1 b/testdata/testinput1
index a002b78..c6b3647 100644
--- a/testdata/testinput1
+++ b/testdata/testinput1
@@ -6411,4 +6411,17 @@ ef) x/x,mark
Hackdaws love my big sphinx of quartz.
Pack my fox with five dozen liquor jugs.
+"(?<=X(?(DEFINE)(A)))X(*F)"
+\= Expect no match
+ AXYZ
+
+"(?<=X(?(DEFINE)(A)))."
+ AXYZ
+
+"(?<=X(?(DEFINE)(.*))Y)."
+ AXYZ
+
+"(?<=X(?(DEFINE)(Y))(?1))."
+ AXYZ
+
# End of testinput1