Browse Source

Random Code: cath fill exceptions

cl-refactor
Dimitry 10 years ago
parent
commit
b1f4f68326
  1. 2
      test/TestHelper.cpp
  2. 16
      test/fuzzTesting/createRandomStateTest.cpp
  3. 2
      test/fuzzTesting/fuzzHelper.cpp

2
test/TestHelper.cpp

@ -588,7 +588,7 @@ void userDefinedTest(std::function<void(json_spirit::mValue&, bool)> doTests)
oSingleTest[pos->first] = pos->second;
json_spirit::mValue v_singleTest(oSingleTest);
doTests(v_singleTest, false);
doTests(v_singleTest, test::Options::get().fillTests);
}
catch (Exception const& _e)
{

16
test/fuzzTesting/createRandomStateTest.cpp

@ -226,18 +226,14 @@ void doStateTests(json_spirit::mValue& _v)
assert(o.count("pre") > 0);
assert(o.count("transaction") > 0);
bytes output;
eth::State theState;
try
{
test::ImportTest importer(o, true);
eth::State theState = importer.m_statePre;
try
{
output = theState.execute(test::lastHashes(importer.m_environment.currentBlock.number), importer.m_transaction).output;
#if ETH_FATDB
importer.exportTest(output, theState);
#else
cout << "You can not fill tests when FATDB is switched off";
#endif
}
catch (Exception const& _e)
{
@ -248,9 +244,15 @@ void doStateTests(json_spirit::mValue& _v)
{
cnote << "state execution did throw an exception: " << _e.what();
}
#if ETH_FATDB
importer.exportTest(output, theState);
#else
cout << "You can not fill tests when FATDB is switched off";
#endif
}
catch(...)
{
cnote << "state execution did throw an exception!";
cnote << "Error filling test, probably...";
}
}
}

2
test/fuzzTesting/fuzzHelper.cpp

@ -128,7 +128,7 @@ std::string RandomCode::fillArguments(dev::eth::Instruction opcode, RandomCodeOp
std::string code;
bool smart = false;
unsigned num = info.args;
int rand = randOpCodeGen() % 100;
int rand = randUniIntGen() % 100;
if (rand < options.smartCodeProbability)
smart = true;

Loading…
Cancel
Save