diff options
author | Gav Wood <i@gavwood.com> | 2015-03-04 00:12:27 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2015-03-06 19:19:44 +0800 |
commit | ac0379ba0fd5a6b414b2b3c16dd89d3c03e00028 (patch) | |
tree | 11b8085e8833e3ea021b311f1093cf7659b8dba8 | |
parent | b41d36e94aa3de294c739a8ffbdbdf1d291a3fbb (diff) | |
download | dexon-solidity-ac0379ba0fd5a6b414b2b3c16dd89d3c03e00028.tar.gz dexon-solidity-ac0379ba0fd5a6b414b2b3c16dd89d3c03e00028.tar.zst dexon-solidity-ac0379ba0fd5a6b414b2b3c16dd89d3c03e00028.zip |
state rebase.
-rw-r--r-- | state.cpp | 18 |
1 files changed, 0 insertions, 18 deletions
@@ -227,24 +227,6 @@ BOOST_AUTO_TEST_CASE(stMemoryTest) dev::test::executeTests("stMemoryTest", "/StateTests", dev::test::doStateTests); } -BOOST_AUTO_TEST_CASE(stMemoryStressTest) -{ - for (int i = 1; i < boost::unit_test::framework::master_test_suite().argc; ++i) - { - string arg = boost::unit_test::framework::master_test_suite().argv[i]; - if (arg == "--memory" || arg == "--all") - { - auto start = chrono::steady_clock::now(); - - dev::test::executeTests("stMemoryStressTest", "/StateTests", dev::test::doStateTests); - - auto end = chrono::steady_clock::now(); - auto duration(chrono::duration_cast<chrono::milliseconds>(end - start)); - cnote << "test duration: " << duration.count() << " milliseconds.\n"; - } - } -} - BOOST_AUTO_TEST_CASE(stCreateTest) { for (int i = 1; i < boost::unit_test::framework::master_test_suite().argc; ++i) |