Use "what" in exception reports.

This commit is contained in:
chriseth
2019-06-18 17:34:10 +02:00
parent 5fd9264dcd
commit 05a67c486e
3 changed files with 35 additions and 2 deletions
+4 -2
View File
@@ -182,7 +182,7 @@ TestTool::Result TestTool::process()
else
return Result::Skipped;
}
catch(boost::exception const& _e)
catch (boost::exception const& _e)
{
AnsiColorized(cout, formatted, {BOLD, RED}) <<
"Exception during test: " << boost::diagnostic_information(_e) << endl;
@@ -191,7 +191,9 @@ TestTool::Result TestTool::process()
catch (std::exception const& _e)
{
AnsiColorized(cout, formatted, {BOLD, RED}) <<
"Exception during test: " << _e.what() << endl;
"Exception during test" <<
(_e.what() ? ": " + string(_e.what()) : ".") <<
endl;
return Result::Exception;
}
catch (...)