diff options
author | Christoph Jentzsch <jentzsch.software@gmail.com> | 2014-11-07 21:10:00 +0800 |
---|---|---|
committer | Christoph Jentzsch <jentzsch.software@gmail.com> | 2014-11-07 21:10:00 +0800 |
commit | dbcce8b7b95a513e0f8b8b3a6433771af3a7bd9e (patch) | |
tree | f605e37e24aa1f25e4aff3ed9fb6a76f3bcd6e57 /state.cpp | |
parent | f88f5a7702e0ede7603332f4d31d701b7d0d715b (diff) | |
download | dexon-solidity-dbcce8b7b95a513e0f8b8b3a6433771af3a7bd9e.tar.gz dexon-solidity-dbcce8b7b95a513e0f8b8b3a6433771af3a7bd9e.tar.zst dexon-solidity-dbcce8b7b95a513e0f8b8b3a6433771af3a7bd9e.zip |
Clean up state tests
Diffstat (limited to 'state.cpp')
-rw-r--r-- | state.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
@@ -55,12 +55,6 @@ void doStateTests(json_spirit::mValue& v, bool _fillin) ImportTest importer(o, _fillin); - if (_fillin) - { - importer.code = importer.m_statePre.code(importer.m_environment.myAddress); - importer.m_environment.code = importer.code; - } - State theState = importer.m_statePre; bytes tx = importer.m_transaction.rlp(); bytes output; @@ -124,12 +118,4 @@ BOOST_AUTO_TEST_CASE(stSystemOperationsTest) dev::test::executeTests("stSystemOperationsTest", "/StateTests", dev::test::doStateTests); } -BOOST_AUTO_TEST_CASE(tmp) -{ - int currentVerbosity = g_logVerbosity; - g_logVerbosity = 12; - dev::test::executeTests("tmp", "/StateTests", dev::test::doStateTests); - g_logVerbosity = currentVerbosity; -} - BOOST_AUTO_TEST_SUITE_END() |