diff options
author | Yves Orton <demerphq@gmail.com> | 2013-06-20 21:51:48 +0200 |
---|---|---|
committer | Yves Orton <demerphq@gmail.com> | 2013-06-20 21:52:13 +0200 |
commit | 5c53df946578f1592c535239f881bb64c953e7be (patch) | |
tree | 5bc4a0d9caf9aae4b562769b7370601674000408 | |
parent | b8a02ff16952a74a5f8d4679c7439a5c543a0fcf (diff) | |
download | perl-5c53df946578f1592c535239f881bb64c953e7be.tar.gz |
add some tests for Perl #71922
Apparently this is fixed now. But add tests
-rw-r--r-- | t/re/re_tests | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/t/re/re_tests b/t/re/re_tests index de7d590a31..0e7d8d3d9b 100644 --- a/t/re/re_tests +++ b/t/re/re_tests @@ -1747,4 +1747,11 @@ m?^xy\?$? xy? y $& xy? /(a|(bc)){0,0}+xyz/ xyz y $& xyz /( a | ( bc ) ) {0,0} + xyz/x xyz y $& xyz +(A(*PRUNE)B|A(*PRUNE)C) AC n - - +(A(*PRUNE)B|A(*PRUNE)D|A(*PRUNE)C) AC n - - +(A(*PRUNE)B|A(*PRUNE)C|A(*PRUNE)D) AC n - - +((A(*PRUNE)B|A(*PRUNE)C)) AC n - - +((A(*PRUNE)B|A(*PRUNE)D|A(*PRUNE)C)) AC n - - +((A(*PRUNE)B|A(*PRUNE)C|A(*PRUNE)D)) AC n - - + # vim: softtabstop=0 noexpandtab |