X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FUtils%2FConsole%2FParse.test.cc;h=a2141860e3c8e8469bfa4219dd9b39673d50f309;hb=463db052ea9d1c292bfd40301d0dc4963411485e;hp=27f169771da4248358c69a2a749f3e2c862a1029;hpb=cad7256a15fbec9b4bf38559e89db7e0fe814db0;p=senf.git diff --git a/senf/Utils/Console/Parse.test.cc b/senf/Utils/Console/Parse.test.cc index 27f1697..a214186 100644 --- a/senf/Utils/Console/Parse.test.cc +++ b/senf/Utils/Console/Parse.test.cc @@ -97,7 +97,7 @@ SENF_AUTO_UNIT_TEST(commandGrammar) " x\"01 02 # Inner comment\n" " 0304\";"; - BOOST_CHECK( boost::spirit::parse( + BOOST_CHECK( senf::console::detail::boost_spirit::parse( text, grammar.use_parser(), grammar.use_parser() ) . full ); @@ -127,7 +127,7 @@ SENF_AUTO_UNIT_TEST(commandGrammar) { ss.str(""); - BOOST_CHECK( boost::spirit::parse( + BOOST_CHECK( senf::console::detail::boost_spirit::parse( "ls //foo/bar;", grammar.use_parser(), grammar.use_parser() ) . full ); @@ -136,7 +136,7 @@ SENF_AUTO_UNIT_TEST(commandGrammar) { ss.str(""); - BOOST_CHECK( boost::spirit::parse( + BOOST_CHECK( senf::console::detail::boost_spirit::parse( "lr /foo/bar;", grammar.use_parser(), grammar.use_parser() ) . full ); @@ -145,7 +145,7 @@ SENF_AUTO_UNIT_TEST(commandGrammar) { ss.str(""); - BOOST_CHECK( boost::spirit::parse( + BOOST_CHECK( senf::console::detail::boost_spirit::parse( "cd /foo/bar;", grammar.use_parser(), grammar.use_parser() ) . full ); @@ -154,7 +154,7 @@ SENF_AUTO_UNIT_TEST(commandGrammar) { ss.str(""); - BOOST_CHECK( boost::spirit::parse( + BOOST_CHECK( senf::console::detail::boost_spirit::parse( "exit;", grammar.use_parser(), grammar.use_parser() ) . full ); @@ -163,7 +163,7 @@ SENF_AUTO_UNIT_TEST(commandGrammar) { ss.str(""); - BOOST_CHECK( boost::spirit::parse( + BOOST_CHECK( senf::console::detail::boost_spirit::parse( "foo/bar// {", grammar.use_parser(), grammar.use_parser() ) . full ); @@ -175,7 +175,7 @@ SENF_AUTO_UNIT_TEST(commandGrammar) { ss.str(""); - BOOST_CHECK( boost::spirit::parse( + BOOST_CHECK( senf::console::detail::boost_spirit::parse( "}", grammar.use_parser(), grammar.use_parser() ) . full ); @@ -184,7 +184,7 @@ SENF_AUTO_UNIT_TEST(commandGrammar) { ss.str(""); - BOOST_CHECK( boost::spirit::parse( + BOOST_CHECK( senf::console::detail::boost_spirit::parse( "help /foo/bar", grammar.use_parser(), grammar.use_parser() ) . full );