summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2006-06-16 23:25:51 +0000
committerDave Mitchell <davem@fdisolutions.com>2006-06-16 23:25:51 +0000
commit40a824489101168f94fce98aa2824baf40bad402 (patch)
treec5d3ebdd2a3b693c44ef8712a9965a4fa38d0330 /t
parent0aec9d3674a357d2c5a029483ff5cdc65c715a57 (diff)
downloadperl-40a824489101168f94fce98aa2824baf40bad402.tar.gz
start turning regmatch() main loop into a FSM
also make BRANCH use the state stack rather than its own unwind struct p4raw-id: //depot/perl@28398
Diffstat (limited to 't')
-rw-r--r--t/op/re_tests1
1 files changed, 1 insertions, 0 deletions
diff --git a/t/op/re_tests b/t/op/re_tests
index 394a66591f..3e11a91fe6 100644
--- a/t/op/re_tests
+++ b/t/op/re_tests
@@ -971,3 +971,4 @@ x(?# x c - Sequence (?#... not terminated
^((?:aa)*)(?:X+((?:\d+|-)(?:X+(.+))?))?$ aaaaX5 y $1 aaaa
X(A|B||C|D)Y XXXYYY y $& XY # Trie w/ NOTHING
(?i:X([A]|[B]|y[Y]y|[D]|)Y) XXXYYYB y $& XY # Trie w/ NOTHING
+^([a]{1})*$ aa y $1 a