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 /vm.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 'vm.cpp')
-rw-r--r-- | vm.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -25,7 +25,6 @@ #include <libethereum/Executive.h> #include <libevm/VMFactory.h> #include "vm.h" -#include "Stats.h" using namespace std; using namespace json_spirit; @@ -311,9 +310,6 @@ namespace dev { namespace test { void doVMTests(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"; @@ -549,6 +545,7 @@ BOOST_AUTO_TEST_CASE(vmRandom) 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()); doVMTests(v, false); } catch (Exception const& _e) |