Skip to content
This repository has been archived by the owner on Oct 28, 2021. It is now read-only.

Commit

Permalink
enable more tests in testeth by default
Browse files Browse the repository at this point in the history
  • Loading branch information
winsvega committed Sep 5, 2019
1 parent e4af4ac commit 1ccfd56
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 3 additions & 1 deletion test/tools/jsontests/LegacyTestsBoost.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ class LegacyTestFixtureBase

string casename = boost::unit_test::framework::current_test_case().p_name;
boost::filesystem::path suiteFillerPath = suite.getFullPathFiller(casename).parent_path();
if (!test::Options::get().all)
static vector<string> const timeConsumingTestSuites{
string{"stTimeConsuming"}, string{"stQuadraticComplexityTest"}};
if (test::inArray(timeConsumingTestSuites, casename) && !test::Options::get().all)
{
std::cout << "Skipping " << casename << " because --all option is not specified.\n";
test::TestOutputHelper::get().markTestFolderAsFinished(suiteFillerPath, casename);
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 @@ -162,10 +162,6 @@ bool isDisabledNetwork(eth::Network _net)
{
case eth::Network::FrontierTest:
case eth::Network::HomesteadTest:
case eth::Network::FrontierToHomesteadAt5:
case eth::Network::HomesteadToDaoAt5:
case eth::Network::HomesteadToEIP150At5:
case eth::Network::ConstantinopleTest: // Disable initial constantinople version
return true;
default:
break;
Expand Down

0 comments on commit 1ccfd56

Please sign in to comment.