diff options
author | ph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15> | 2011-11-15 15:07:02 +0000 |
---|---|---|
committer | ph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15> | 2011-11-15 15:07:02 +0000 |
commit | f021e15fd4f782eed4d409c68d8cbffc5200fb3b (patch) | |
tree | f834155ef53e8c92ad03bc13f7ccdcd80864eb37 /testdata/testinput1 | |
parent | cc87f05b24e3944bf2bb4416dfc704593ef0a6f5 (diff) | |
download | pcre-f021e15fd4f782eed4d409c68d8cbffc5200fb3b.tar.gz |
Caseless matching of backreferences with fixed length repetitions was broken.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@746 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'testdata/testinput1')
-rw-r--r-- | testdata/testinput1 | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testdata/testinput1 b/testdata/testinput1 index c913ee4..aa9ce42 100644 --- a/testdata/testinput1 +++ b/testdata/testinput1 @@ -4251,4 +4251,14 @@ /[:a]xxx[b:]/ :xxx: +/(?<=a{2})b/i + xaabc + ** Failers + xabc + +/(?<!a{2})b/i + xabc + ** Failers + xaabc + /-- End of testinput1 --/ |