diff options
author | Gav Wood <g@ethdev.com> | 2015-04-05 05:56:07 +0800 |
---|---|---|
committer | Gav Wood <g@ethdev.com> | 2015-04-05 05:56:07 +0800 |
commit | 158fdc17982c983be686fb928595c30076b7acb7 (patch) | |
tree | 922a60c54969886a037ae5d3cd8e308f5154026f /state.cpp | |
parent | 42ef1880271a99a69f6dcc5fbad97290baed8a2a (diff) | |
parent | fc3ea6aa6cc4e7eb740ec0fb1c329b1fca1d372c (diff) | |
download | dexon-solidity-158fdc17982c983be686fb928595c30076b7acb7.tar dexon-solidity-158fdc17982c983be686fb928595c30076b7acb7.tar.gz dexon-solidity-158fdc17982c983be686fb928595c30076b7acb7.tar.bz2 dexon-solidity-158fdc17982c983be686fb928595c30076b7acb7.tar.lz dexon-solidity-158fdc17982c983be686fb928595c30076b7acb7.tar.xz dexon-solidity-158fdc17982c983be686fb928595c30076b7acb7.tar.zst dexon-solidity-158fdc17982c983be686fb928595c30076b7acb7.zip |
Merge pull request #1466 from imapp-pl/pr/jit_cache
EVM JIT stack limit support
Diffstat (limited to 'state.cpp')
-rw-r--r-- | state.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -31,7 +31,6 @@ #include <libethereum/Defaults.h> #include <libevm/VM.h> #include "TestHelper.h" -#include "Stats.h" using namespace std; using namespace json_spirit; @@ -42,9 +41,6 @@ namespace dev { namespace test { void doStateTests(json_spirit::mValue& v, bool _fillin) { - if (Options::get().stats) - Listener::registerListener(Stats::get()); - for (auto& i: v.get_obj()) { std::cout << " " << i.first << "\n"; @@ -254,6 +250,7 @@ BOOST_AUTO_TEST_CASE(stRandom) string s = asString(dev::contents(path.string())); BOOST_REQUIRE_MESSAGE(s.length() > 0, "Content of " + path.string() + " is empty. Have you cloned the 'tests' repo branch develop and set ETHEREUM_TEST_PATH to its path?"); json_spirit::read_string(s, v); + test::Listener::notifySuiteStarted(path.filename().string()); dev::test::doStateTests(v, false); } catch (Exception const& _e) |