Skip to content
This repository was archived by the owner on Oct 28, 2021. It is now read-only.
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
- Added: [#5557](https://github.com/ethereum/aleth/pull/5557) Improved debug logging of full sync.
- Added: [#5564](https://github.com/ethereum/aleth/pull/5564) Improved help output of Aleth by adding list of channels.
- Changed: [#5559](https://github.com/ethereum/aleth/pull/5559) Update peer validation error messages.
- Fixed: [#5562](https://github.com/ethereum/aleth/pull/5562) Don't send header request messages to peers that haven't sent us Status yet.
- Changed: [#5568](https://github.com/ethereum/aleth/pull/5568) Improve rlpx handshake log messages and create new rlpx log channel.
- Changed: [#5576](https://github.com/ethereum/aleth/pull/5576) Moved sstore_combinations and static_Call50000_sha256 tests to stTimeConsuming test suite. (testeth runs them only with `--all` flag)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(see https://keepachangelog.com/en/1.0.0/#how for changelog format)

- Fixed: [#5562](https://github.com/ethereum/aleth/pull/5562) Don't send header request messages to peers that haven't sent us Status yet.

## [1.6.0] - 2019-04-16

Expand Down
2 changes: 1 addition & 1 deletion test/jsontests
Submodule jsontests updated 11039 files
1 change: 1 addition & 0 deletions test/tools/jsontests/BlockChainTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1156,5 +1156,6 @@ BOOST_AUTO_TEST_CASE(stBadOpcode){}

//New Tests
BOOST_AUTO_TEST_CASE(stArgsZeroOneBalance){}
BOOST_AUTO_TEST_CASE(stTimeConsuming){}
BOOST_AUTO_TEST_SUITE_END()

4 changes: 3 additions & 1 deletion test/tools/jsontests/StateTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ class GeneralTestFixture
boost::filesystem::path suiteFillerPath = suite.getFullPathFiller(casename).parent_path();

// Check specific test cases
static vector<string> timeConsumingTestSuites{string{"stQuadraticComplexityTest"}};
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";
Expand Down Expand Up @@ -229,4 +230,5 @@ BOOST_AUTO_TEST_CASE(stBadOpcode){}
//New Tests
BOOST_AUTO_TEST_CASE(stArgsZeroOneBalance){}
BOOST_AUTO_TEST_CASE(stEWASMTests){}
BOOST_AUTO_TEST_CASE(stTimeConsuming) {}
BOOST_AUTO_TEST_SUITE_END()