[Test] 1.33 small typo error with MIPS Pro

Under MIPS pro va_end() is a null macro and this then causes a warning, so I assume that the commas should be semi-colons. Kevin --- boost_1_33_0_gcc_3.2.3/include/boost-1_33/boost/test/impl/test_tools.ipp 2005-06-22 23:03:05.000000000 +0100 +++ boost_1_33_0/boost/test/impl/test_tools.ipp 2005-08-16 09:41:13.000000000 +0100 @@ -173,7 +173,7 @@ unit_test_log << "difference between " << arg1_descr << "{" << arg1_val << "}" << " and " << arg2_descr << "{" << arg2_val << "}" << ( tl == PASS ? " doesn't exceed " : " exceeds " ) - << toler_val << "%", + << toler_val << "%"; va_end( args ); @@ -196,7 +196,7 @@ unit_test_log << "absolute value of " << arg1_descr << "{" << arg1_val << "}" << ( tl == PASS ? " doesn't exceed " : " exceeds " ) - << toler_val, + << toler_val; va_end( args ); -- | Kevin Wheatley, Cinesite (Europe) Ltd | Nobody thinks this | | Senior Technology | My employer for certain | | And Network Systems Architect | Not even myself |

Hi. i just test using giallo .but it has some errors: giallo error LNK2005: "public: __thiscall std::basic_string<char,struct std::char_traits<char>,class std::allocator<char>
::~basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(void)" (??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ) 已经在 giallo.obj 中定义
// giallo.cpp : ¶šÒå¿ØÖÆÌšÓŠÓóÌÐòµÄÈë¿Úµã¡£ // #include "stdafx.h" #include <string> #include <boost/net/socket/socket.hpp> #include <boost/net/socket/ip4.hpp> void server(); int _tmain(int argc, _TCHAR* argv[]) { server(); return 0; } void server() { boost::net::socket::socket socket; boost::net::socket::socket_errno err; boost::net::socket::ip4::tcp_protocol protocol; boost::net::socket::ip4::address addr; addr.port(3235); addr.ip("127.0.0.1"); err=socket.open(protocol, boost::net::blocking_synchronisation() ); std::cout<<"opened-"<<err<<std::endl; err=socket.bind(addr); std::cout<<"bind-"<<err<<std::endl; err=socket.listen(); std::cout<<"listen-"<<err<<std::endl; boost::net::socket::socket connection; err=socket.accept(connection, addr); char buf[100]; int n=connection.recv(buf,100); }

ghq7613 wrote:
Hi. i just test using giallo .but it has some errors:
I don't think the giallo cvs snapshot is in a consistent state at the moment, since Hugo has been making changes over the last few days. Also, I don't think he follows the boost list, so you might be better off contacting him via a support request on Sourceforge.net.. Matt
participants (4)
-
Gennadiy Rozental
-
ghq7613
-
Kevin Wheatley
-
Matt Vogt