summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-07-14 10:49:37 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-07-14 10:49:37 +0000
commit3ae08724085c050ef6bd2c7af042aa714c2ad9d9 (patch)
treeed42eb257a307d5ee6924455d8cb7c6aaffe569a /t
parent01ec43d06089361423d61a40521883bf73e1944a (diff)
parent29d1e993db685c67acc489087a44f0e4137e296c (diff)
downloadperl-3ae08724085c050ef6bd2c7af042aa714c2ad9d9.tar.gz
integrate cfgperl contents into mainline
p4raw-id: //depot/perl@6400
Diffstat (limited to 't')
-rw-r--r--t/op/re_tests5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/op/re_tests b/t/op/re_tests
index 263bded7c9..b3137c737d 100644
--- a/t/op/re_tests
+++ b/t/op/re_tests
@@ -751,5 +751,10 @@ tt+$ xxxtt y - -
'^\S\s+aa$'m \nx aa y - -
(^|a)b ab y - -
^([ab]*?)(b)?(c)$ abac y -$2- --
+(\w)?(abc)\1b abcab n - -
+^(?:.,){2}c a,b,c y - -
+^(.,){2}c a,b,c y $1 b,
+^(?:[^,]*,){2}c a,b,c y - -
+^([^,]*,){2}c a,b,c y $1 b,
(?i) y - -
'(?!\A)x'm a\nxb\n y - -