-
Notifications
You must be signed in to change notification settings - Fork 321
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove Updated Difficulty Tests from BasicTests Folder #976
Conversation
there are some files that might still be used by someone. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lets move to legacy only the difficulty tests
legacytests root / BasicTests / *olddifficulty tests
BasicTests/blockgenesistest.json
Outdated
@@ -1,20 +0,0 @@ | |||
[ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have no idea how many teams are still using this files. perhaps it is better to leave it here as it is small
BasicTests/crypto.json
Outdated
@@ -1,16 +0,0 @@ | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have no idea how many teams are still using this files. perhaps it is better to leave it here as it is small
BasicTests/genesishashestest.json
Outdated
@@ -1,5 +0,0 @@ | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have no idea how many teams are still using this files. perhaps it is better to leave it here as it is small
BasicTests/hexencodetest.json
Outdated
@@ -1,62 +0,0 @@ | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have no idea how many teams are still using this files. perhaps it is better to leave it here as it is small
BasicTests/keyaddrtest.json
Outdated
@@ -1,22 +0,0 @@ | |||
[ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have no idea how many teams are still using this files. perhaps it is better to leave it here as it is small
BasicTests/txtest.json
Outdated
@@ -1,24 +0,0 @@ | |||
[ | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have no idea how many teams are still using this files. perhaps it is better to leave it here as it is small
As for go-ethereum, we use the BasicTests in this file: https://github.com/ethereum/go-ethereum/blob/master/tests/difficulty_test.go#L84 -- it is the We skip these:
And these:
|
For all changes such as these, please make sure to write them up on the release notes, eventually, so we can make sure to update and use the new paths. |
yes. the existing difficulty tests we plan to move to LegacyTests subfolder (repo) JavaScript team reported that they still use some of the tests from this folder |
I think that partially removing some of the files might end up being more confusing to the users instead of simply instructing: |
for thise little files it does not make much sense to fetch the whole legacy tests repo. |
Got it, sounds good. Will remove only what's being updated in #977, everything else remains in ./BasicTests . |
4565aa8
to
6c2145a
Compare
This PR removes the BasicTests folder which has been relocated to the ethereum/legacytests repo.
Update: Only remove difficulty tests that are already updated in #977.