Skip to content
This repository was archived by the owner on Dec 10, 2018. It is now read-only.

Run stShift tests as well #14

Merged
merged 3 commits into from
Feb 28, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/jsontests
Submodule jsontests updated 6141 files
3 changes: 3 additions & 0 deletions test/tools/jsontests/BlockChainTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1088,6 +1088,9 @@ BOOST_AUTO_TEST_CASE(stZeroKnowledge){}
BOOST_AUTO_TEST_CASE(stZeroKnowledge2){}
BOOST_AUTO_TEST_CASE(stBugs){}

//Constantinople Tests
BOOST_AUTO_TEST_CASE(stShift){}

//Stress Tests
BOOST_AUTO_TEST_CASE(stAttackTest){}
BOOST_AUTO_TEST_CASE(stMemoryStressTest){}
Expand Down
3 changes: 3 additions & 0 deletions test/tools/jsontests/StateTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,9 @@ BOOST_AUTO_TEST_CASE(stZeroKnowledge2){}
BOOST_AUTO_TEST_CASE(stCodeCopyTest){}
BOOST_AUTO_TEST_CASE(stBugs){}

//Constantinople Tests
BOOST_AUTO_TEST_CASE(stShift){}

//Stress Tests
BOOST_AUTO_TEST_CASE(stAttackTest){}
BOOST_AUTO_TEST_CASE(stMemoryStressTest){}
Expand Down
4 changes: 0 additions & 4 deletions test/tools/libtesteth/TestHelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,7 @@ bool isDisabledNetwork(eth::Network _net)
{
Options const& opt = Options::get();
if (opt.all || opt.filltests || opt.createRandomTest || !opt.singleTestNet.empty())
{
if (_net == eth::Network::ConstantinopleTest)
return true;
return false;
}
switch (_net)
{
case eth::Network::FrontierTest:
Expand Down