summaryrefslogtreecommitdiff
path: root/t/op/re_tests
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-07-14 20:35:05 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-07-14 20:35:05 +0000
commitc1d44abf8f70f62b6e462ff1c9fd58efa17a2398 (patch)
tree2a609da10087a885c5353c8a52843dcf09a923df /t/op/re_tests
parentb117983900e00fec1a326438505f92cf9183d038 (diff)
downloadperl-c1d44abf8f70f62b6e462ff1c9fd58efa17a2398.tar.gz
The bug report
[ID 19991110.002] minimal matching discrepancy found by pcre author seems to have been fixed (though differently from what was suggested in the report) in 5.6.0. Add tests to keep the bug from reappearing. p4raw-id: //depot/perl@6408
Diffstat (limited to 't/op/re_tests')
-rw-r--r--t/op/re_tests2
1 files changed, 2 insertions, 0 deletions
diff --git a/t/op/re_tests b/t/op/re_tests
index b3137c737d..1e95a35016 100644
--- a/t/op/re_tests
+++ b/t/op/re_tests
@@ -758,3 +758,5 @@ tt+$ xxxtt y - -
^([^,]*,){2}c a,b,c y $1 b,
(?i) y - -
'(?!\A)x'm a\nxb\n y - -
+^(a(b)?)+$ aba y -$1-$2- -a--
+^(aa(bb)?)+$ aabbaa y -$1-$2- -aa--