Utils/Console: Fix unit test for newer boost versions
g0dil [Tue, 18 Aug 2009 05:35:25 +0000 (05:35 +0000)]
git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@1297 270642c3-0616-0410-b53a-bc976706d245

Utils/Console/UDPServer.cc
Utils/Console/UDPServer.test.cc

index 8a0c33b..73834be 100644 (file)
@@ -114,7 +114,7 @@ prefix_ void senf::console::UDPServer::handleInput(int events)
     senf::GenericBSDSocketAddress address;
     handle_.readfrom(data, address, 0u);
     boost::trim(data);
-    
+
     executor_.cwd(executor_.chroot());
     std::stringstream stream;
     try {
index 8617926..e35f4d0 100644 (file)
@@ -71,7 +71,7 @@ BOOST_AUTO_UNIT_TEST(udpServer)
     nread = 0;
     flags = 0;
     data = "";
-    socket.write("ll");
+    socket.write(std::string("ll"));
     timer.timeout(delay(300));
     senf::scheduler::process();
     BOOST_CHECK_EQUAL( nread, 1 );
@@ -82,7 +82,7 @@ BOOST_AUTO_UNIT_TEST(udpServer)
     nread = 0;
     flags = 0;
     data = "";
-    socket.write("sys");
+    socket.write(std::string("sys"));
     timer.timeout(delay(300));
     senf::scheduler::process();
     BOOST_CHECK_EQUAL( nread, 1 );
@@ -93,7 +93,7 @@ BOOST_AUTO_UNIT_TEST(udpServer)
     nread = 0;
     flags = 0;
     data = "";
-    socket.write("cd sys");
+    socket.write(std::string("cd sys"));
     timer.timeout(delay(300));
     senf::scheduler::process();
     BOOST_CHECK_EQUAL( nread, 1 );
@@ -104,7 +104,7 @@ BOOST_AUTO_UNIT_TEST(udpServer)
     nread = 0;
     flags = 0;
     data = "";
-    socket.write("ll");
+    socket.write(std::string("ll"));
     timer.timeout(delay(300));
     senf::scheduler::process();
     BOOST_CHECK_EQUAL( nread, 1 );