diff options
author | Paweł Bylica <pawel.bylica@imapp.pl> | 2015-05-06 19:18:52 +0800 |
---|---|---|
committer | Paweł Bylica <pawel.bylica@imapp.pl> | 2015-05-06 19:18:52 +0800 |
commit | b9a722223ad7eee9195230a97481da0d17cfad79 (patch) | |
tree | ab4c7ba23b1687a1e49fad95c7331027664bce10 /TestHelper.cpp | |
parent | fce1a7f82e48ddf3d73e00a2998f003d77f3d5f9 (diff) | |
download | dexon-solidity-b9a722223ad7eee9195230a97481da0d17cfad79.tar.gz dexon-solidity-b9a722223ad7eee9195230a97481da0d17cfad79.tar.zst dexon-solidity-b9a722223ad7eee9195230a97481da0d17cfad79.zip |
SmartVM: initial implementation
Diffstat (limited to 'TestHelper.cpp')
-rw-r--r-- | TestHelper.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/TestHelper.cpp b/TestHelper.cpp index eecf6f80..b14c3571 100644 --- a/TestHelper.cpp +++ b/TestHelper.cpp @@ -288,7 +288,7 @@ void ImportTest::checkExpectedState(State const& _stateExpect, State const& _sta { addressOptions = _expectedStateOptions.at(a.first); } - catch(std::out_of_range) + catch(std::out_of_range const&) { BOOST_ERROR("expectedStateOptions map does not match expectedState in checkExpectedState!"); break; @@ -707,10 +707,9 @@ Options::Options() { auto arg = std::string{argv[i]}; if (arg == "--jit") - { - jit = true; eth::VMFactory::setKind(eth::VMKind::JIT); - } + else if (arg == "--vm=smart") + eth::VMFactory::setKind(eth::VMKind::Smart); else if (arg == "--vmtrace") vmtrace = true; else if (arg == "--filltests") |