diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2006-07-14 11:50:37 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2006-07-14 11:50:37 +0000 |
commit | 3298f2576bd4718b372a9e51e1043fdf2c0a56ab (patch) | |
tree | 1a7572358a5b8026b20ca2a73324b722164ca397 /t/op | |
parent | 0b2d3faa276ad12850b3d1cb417e36a43029c4ec (diff) | |
download | perl-3298f2576bd4718b372a9e51e1043fdf2c0a56ab.tar.gz |
remove regex postive super-linear cache code
(it wasn't actually achieving anything)
p4raw-id: //depot/perl@28571
Diffstat (limited to 't/op')
-rw-r--r-- | t/op/re_tests | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/t/op/re_tests b/t/op/re_tests index 3e11a91fe6..d35104f253 100644 --- a/t/op/re_tests +++ b/t/op/re_tests @@ -972,3 +972,7 @@ x(?# x c - Sequence (?#... not terminated X(A|B||C|D)Y XXXYYY y $& XY # Trie w/ NOTHING (?i:X([A]|[B]|y[Y]y|[D]|)Y) XXXYYYB y $& XY # Trie w/ NOTHING ^([a]{1})*$ aa y $1 a +a(?!b(?!c))(..) abababc y $1 bc # test nested negatives +a(?!b(?=a))(..) abababc y $1 bc # test nested lookaheads +a(?!b(?!c(?!d(?!e))))...(.) abxabcdxabcde y $1 e +X(?!b+(?!(c+)*(?!(c+)*d))).*X aXbbbbbbbcccccccccccccaaaX y - - |