mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
boostTest: Print diagnostic information for std::exception too
This commit is contained in:
parent
030fb1d9a2
commit
82b720029d
@ -83,6 +83,10 @@ void runTestCase(TestCase::Config const& _config, TestCase::TestCaseCreator cons
|
||||
{
|
||||
BOOST_ERROR("Exception during extracted test: " << boost::diagnostic_information(_e));
|
||||
}
|
||||
catch (std::exception const& _e)
|
||||
{
|
||||
BOOST_ERROR("Exception during extracted test: " << boost::diagnostic_information(_e));
|
||||
}
|
||||
}
|
||||
|
||||
int registerTests(
|
||||
|
Loading…
Reference in New Issue
Block a user