summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo van der Sanden <hv@crypt.org>2000-07-22 19:12:58 +0100
committerJarkko Hietaniemi <jhi@iki.fi>2000-07-24 02:50:03 +0000
commit66417f8481fa145150d67cc9c9373be6a91826a9 (patch)
treeabd95135f5835ffffed974afc6542a8f95719cf8
parentcc4319de0caa3692ae94aa24750bbb8aa4523fad (diff)
downloadperl-66417f8481fa145150d67cc9c9373be6a91826a9.tar.gz
Add tests for
[ID 19991110.003] another matching finding by pcre author which has already been fixed by some patch, as verified in Subject: Re: two regex bugs from the mists of time (well, last November) Message-Id: <200007221712.SAA26770@crypt.compulink.co.uk> p4raw-id: //depot/perl@6427
-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 1e95a35016..421442d9aa 100644
--- a/t/op/re_tests
+++ b/t/op/re_tests
@@ -760,3 +760,5 @@ tt+$ xxxtt y - -
'(?!\A)x'm a\nxb\n y - -
^(a(b)?)+$ aba y -$1-$2- -a--
^(aa(bb)?)+$ aabbaa y -$1-$2- -aa--
+^(a)?a$ a y -$1- --
+^(a)?(?(1)a|b)+$ a n - -