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

Commit 1ccfd56

Browse files
author
Dimitry Kh
committed
enable more tests in testeth by default
1 parent e4af4ac commit 1ccfd56

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

test/tools/jsontests/LegacyTestsBoost.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ class LegacyTestFixtureBase
3939

4040
string casename = boost::unit_test::framework::current_test_case().p_name;
4141
boost::filesystem::path suiteFillerPath = suite.getFullPathFiller(casename).parent_path();
42-
if (!test::Options::get().all)
42+
static vector<string> const timeConsumingTestSuites{
43+
string{"stTimeConsuming"}, string{"stQuadraticComplexityTest"}};
44+
if (test::inArray(timeConsumingTestSuites, casename) && !test::Options::get().all)
4345
{
4446
std::cout << "Skipping " << casename << " because --all option is not specified.\n";
4547
test::TestOutputHelper::get().markTestFolderAsFinished(suiteFillerPath, casename);

test/tools/libtesteth/TestHelper.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,10 +162,6 @@ bool isDisabledNetwork(eth::Network _net)
162162
{
163163
case eth::Network::FrontierTest:
164164
case eth::Network::HomesteadTest:
165-
case eth::Network::FrontierToHomesteadAt5:
166-
case eth::Network::HomesteadToDaoAt5:
167-
case eth::Network::HomesteadToEIP150At5:
168-
case eth::Network::ConstantinopleTest: // Disable initial constantinople version
169165
return true;
170166
default:
171167
break;

0 commit comments

Comments
 (0)