This repository was archived by the owner on Oct 28, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff 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);
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments