Added recursive create test + lesser output for safe VM exceptions

This commit is contained in:
CJentzsch 2014-12-12 22:16:51 +01:00
parent dd309de94c
commit ba3d2b43ae
3 changed files with 6 additions and 1 deletions

View File

@ -130,6 +130,11 @@ BOOST_AUTO_TEST_CASE(stLogTests)
dev::test::executeTests("stLogTests", "/StateTests", dev::test::doStateTests);
}
BOOST_AUTO_TEST_CASE(stRecursiveCreate)
{
dev::test::executeTests("stRecursiveCreate", "/StateTests", dev::test::doStateTests);
}
BOOST_AUTO_TEST_CASE(stSpecialTest)
{
dev::test::executeTests("stSpecialTest", "/StateTests", dev::test::doStateTests);

2
vm.cpp
View File

@ -311,7 +311,7 @@ void doVMTests(json_spirit::mValue& v, bool _fillin)
}
catch (VMException const& _e)
{
cnote << "VM did throw an exception: " << diagnostic_information(_e);
cnote << "Safe VM Exception";
vmExceptionOccured = true;
}
catch (Exception const& _e)