forked from boostorg/regex
Merge collected bug fixes from Trunk:
Refs #589. Refs #7032. Refs #7084. Refs #6346. [SVN r79556]
This commit is contained in:
@ -190,5 +190,9 @@ void test_replace()
|
||||
TEST_REGEX_REPLACE("(?:(?<one>a)|(?<one>b))", perl, " ...b,,", match_default, "$1.$2.$+{one}", " ....b.b,,");
|
||||
TEST_REGEX_REPLACE("(?:(?<one>a)(?<one>b))", perl, " ...ab,,", match_default, "$1.$2.$+{one}", " ...a.b.a,,");
|
||||
|
||||
// See https://svn.boost.org/trac/boost/ticket/589
|
||||
TEST_REGEX_REPLACE("(a*)", perl, "aabb", match_default, "{$1}", "{aa}{}b{}b{}");
|
||||
TEST_REGEX_REPLACE("(a*)", extended, "aabb", match_default, "{$1}", "{aa}{}b{}b{}");
|
||||
TEST_REGEX_REPLACE("(a*)", extended, "aabb", match_default|match_posix, "{$1}", "{aa}b{}b{}");
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user