summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2022-03-13 07:49:53 +0100
committerYves Orton <demerphq@gmail.com>2022-04-08 12:29:21 +0800
commitf3ef26ebde6e87c85a3b0a3031b3517599fb5339 (patch)
tree08f792dea9a685fdf270d4bff9c3031538950f21 /t
parentb80099d94f18fbd95391868cbdbbf96e46b20e90 (diff)
downloadperl-f3ef26ebde6e87c85a3b0a3031b3517599fb5339.tar.gz
re_tests: ACCEPT followed by SUSPEND
Diffstat (limited to 't')
-rw-r--r--t/re/re_tests2
1 files changed, 2 insertions, 0 deletions
diff --git a/t/re/re_tests b/t/re/re_tests
index 3a85dabb75..a30b7b8de2 100644
--- a/t/re/re_tests
+++ b/t/re/re_tests
@@ -2085,6 +2085,8 @@ AB\s+\x{100} AB \x{100}X y - -
/(A(A|B(*ACCEPT)|C)D)(E)/ ABDE y $& AB - # ACCEPT without CurlyM optimization
/(A(A|B(*ACCEPT)|C)D)(E)/ ABCDE y $1-$2 AB-B - # ACCEPT without CurlyM optimization
/(A(A|B(*ACCEPT)|C)D)(E)/ ABCDE y $& AB - # ACCEPT without CurlyM optimization
+/(A(A|B(*ACCEPT)|(?>C))D)(E)/ ABCDE y $1-$2 AB-B - # ACCEPT with SUSPEND in pattern
+/(A(A|B(*ACCEPT)|(?>C))D)(E)/ ABCDE y $& AB - # ACCEPT with SUSPEND in pattern
# Keep these lines at the end of the file
# pat string y/n/etc expr expected-expr skip-reason comment
# vim: softtabstop=0 noexpandtab