summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/xpressive/test/test9.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/boost/libs/xpressive/test/test9.hpp')
-rw-r--r--src/boost/libs/xpressive/test/test9.hpp110
1 files changed, 110 insertions, 0 deletions
diff --git a/src/boost/libs/xpressive/test/test9.hpp b/src/boost/libs/xpressive/test/test9.hpp
new file mode 100644
index 00000000..3bab751d
--- /dev/null
+++ b/src/boost/libs/xpressive/test/test9.hpp
@@ -0,0 +1,110 @@
+///////////////////////////////////////////////////////////////////////////////
+// test9.hpp
+//
+// Copyright 2008 Eric Niebler. Distributed under the Boost
+// Software License, Version 1.0. (See accompanying file
+// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+
+#include "./test.hpp"
+
+///////////////////////////////////////////////////////////////////////////////
+// get_test_cases
+//
+template<typename BidiIterT>
+boost::iterator_range<xpr_test_case<BidiIterT> const *> get_test_cases()
+{
+ typedef typename boost::iterator_value<BidiIterT>::type char_type;
+ typedef xpr_test_case<BidiIterT> xpr_test_case;
+ typedef basic_regex<BidiIterT> regex_type;
+
+ static char_type const *nilbr = 0;
+ static xpr_test_case const test_cases[] =
+ {
+ xpr_test_case
+ (
+ "test151"
+ , L("bbbc")
+ , regex_type(bos >> repeat<2>(s1= -optional(L('b'))) >> L("bc") >> eos)
+ , backrefs(L("bbbc"), L("b"), nilbr)
+ )
+ , xpr_test_case
+ (
+ "test152"
+ , L("bbbbc")
+ , regex_type(bos >> repeat<2>(s1= -optional(L('b'))) >> L("bc") >> eos)
+ , no_match
+ )
+ , xpr_test_case
+ (
+ "test153"
+ , L("bbbbc")
+ , regex_type(bos >> *(s1= -optional(L('b'))) >> L('d') >> eos)
+ , no_match
+ )
+ , xpr_test_case
+ (
+ "test154"
+ , L("bc")
+ , regex_type(bos >> -repeat<2>(s1= -optional(L('b'))) >> L("bc") >> eos)
+ , backrefs(L("bc"), L(""), nilbr)
+ )
+ , xpr_test_case
+ (
+ "test155"
+ , L("bbc")
+ , regex_type(bos >> -repeat<2>(s1= -optional(L('b'))) >> L("bc") >> eos)
+ , backrefs(L("bbc"), L("b"), nilbr)
+ )
+ , xpr_test_case
+ (
+ "test156"
+ , L("bbbc")
+ , regex_type(bos >> -repeat<2>(s1= -optional(L('b'))) >> L("bc") >> eos)
+ , backrefs(L("bbbc"), L("b"), nilbr)
+ )
+ , xpr_test_case
+ (
+ "test157"
+ , L("bbbbc")
+ , regex_type(bos >> -repeat<2>(s1= -optional(L('b'))) >> L("bc") >> eos)
+ , no_match
+ )
+ , xpr_test_case
+ (
+ "test158"
+ , L("bbbbc")
+ , regex_type(bos >> -*(s1= -optional(L('b'))) >> L('d') >> eos)
+ , no_match
+ )
+ , xpr_test_case
+ (
+ "test159"
+ , L("bbc")
+ , regex_type(bos >> *(s1= nil | nil | nil | L('b')) >> L("bc") >> eos)
+ , backrefs(L("bbc"), L(""), nilbr)
+ )
+ , xpr_test_case
+ (
+ "test160"
+ , L("bbc")
+ , regex_type(bos >> -*(s1= nil | nil | nil | L('b')) >> L("bc") >> eos)
+ , backrefs(L("bbc"), L("b"), nilbr)
+ )
+ , xpr_test_case
+ (
+ "test164"
+ , L("1yzZ^aAc2")
+ , regex_type(icase(+range(L('Z'),L('a'))))
+ , backrefs(L("zZ^aA"), nilbr)
+ )
+ , xpr_test_case
+ (
+ "test165"
+ , L("1yzZ^aAc2")
+ , regex_type(+range(L('Z'),L('a')))
+ , backrefs(L("Z^a"), nilbr)
+ )
+ };
+
+ return boost::make_iterator_range(test_cases);
+}