Hello,
can anybody help me, to find the reason why CPPUNIT_FAIL
cause a SIGSEGV.
thx in advance.
----------------------------------------------------------------------------------------
ostringstream ostr;
....
} catch (const Exception &e ) {
// if( e.Errno() != EINVAL ) {
ostr.str("");
ostr << mesg.shortDescription()
<< "\n-- Unexpected Dns::Exception received !! \n--"
<< e.message() << "--\n";
cout << endl << ostr.str() << endl << endl; // here's nice output
CPPUNIT_FAIL( ostr.str() ); // got sigsegv
// }
}
---------------------------------------------------------------------------------------
--
mit freundlichem Gruß -- regards
Thomas
|