mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
In VM tests, check only if an exception occurred if an exception expected (no post state and output checking)
This commit is contained in:
parent
9544173e3b
commit
7df5ec34c7
@ -374,6 +374,7 @@ void executeTests(const string& _name, const string& _testPathAppendix, std::fun
|
|||||||
{
|
{
|
||||||
BOOST_ERROR("Failed test with Exception: " << _e.what());
|
BOOST_ERROR("Failed test with Exception: " << _e.what());
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
13
vm.cpp
13
vm.cpp
@ -300,6 +300,7 @@ void doVMTests(json_spirit::mValue& v, bool _fillin)
|
|||||||
VM vm(fev.gas);
|
VM vm(fev.gas);
|
||||||
|
|
||||||
u256 gas;
|
u256 gas;
|
||||||
|
bool vmExceptionOccured = false;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
output = vm.go(fev, fev.simpleTrace()).toVector();
|
output = vm.go(fev, fev.simpleTrace()).toVector();
|
||||||
@ -308,7 +309,7 @@ void doVMTests(json_spirit::mValue& v, bool _fillin)
|
|||||||
catch (VMException const& _e)
|
catch (VMException const& _e)
|
||||||
{
|
{
|
||||||
cnote << "VM did throw an exception: " << diagnostic_information(_e);
|
cnote << "VM did throw an exception: " << diagnostic_information(_e);
|
||||||
gas = 0;
|
vmExceptionOccured = true;
|
||||||
}
|
}
|
||||||
catch (Exception const& _e)
|
catch (Exception const& _e)
|
||||||
{
|
{
|
||||||
@ -342,13 +343,20 @@ void doVMTests(json_spirit::mValue& v, bool _fillin)
|
|||||||
{
|
{
|
||||||
o["env"] = mValue(fev.exportEnv());
|
o["env"] = mValue(fev.exportEnv());
|
||||||
o["exec"] = mValue(fev.exportExec());
|
o["exec"] = mValue(fev.exportExec());
|
||||||
|
if (!vmExceptionOccured)
|
||||||
|
{
|
||||||
o["post"] = mValue(fev.exportState());
|
o["post"] = mValue(fev.exportState());
|
||||||
o["callcreates"] = fev.exportCallCreates();
|
o["callcreates"] = fev.exportCallCreates();
|
||||||
o["out"] = "0x" + toHex(output);
|
o["out"] = "0x" + toHex(output);
|
||||||
fev.push(o, "gas", gas);
|
fev.push(o, "gas", gas);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
if (o.count("post") > 0) // No exceptions expected
|
||||||
|
{
|
||||||
|
BOOST_CHECK(!vmExceptionOccured);
|
||||||
|
|
||||||
BOOST_REQUIRE(o.count("post") > 0);
|
BOOST_REQUIRE(o.count("post") > 0);
|
||||||
BOOST_REQUIRE(o.count("callcreates") > 0);
|
BOOST_REQUIRE(o.count("callcreates") > 0);
|
||||||
BOOST_REQUIRE(o.count("out") > 0);
|
BOOST_REQUIRE(o.count("out") > 0);
|
||||||
@ -385,6 +393,9 @@ void doVMTests(json_spirit::mValue& v, bool _fillin)
|
|||||||
checkAddresses<std::map<Address, std::tuple<u256, u256, std::map<u256, u256>, bytes> > >(test.addresses, fev.addresses);
|
checkAddresses<std::map<Address, std::tuple<u256, u256, std::map<u256, u256>, bytes> > >(test.addresses, fev.addresses);
|
||||||
BOOST_CHECK(test.callcreates == fev.callcreates);
|
BOOST_CHECK(test.callcreates == fev.callcreates);
|
||||||
}
|
}
|
||||||
|
else // Exception expected
|
||||||
|
BOOST_CHECK(vmExceptionOccured);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user