-
Notifications
You must be signed in to change notification settings - Fork 130
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
Implement a test runner for the standard ETH blockchain/state validation tests #113
Comments
Can this be closed now? EDIT: Looks like we need RPC interfaces to the tests to close this. |
Well, let's change the closing criteria to "pass all state validation tests" The test runner has already been implemented here: But a large number of tests are still disabled here: For newcomers, we've written some helpful notes on debugging test failures in general: I think we'll soon need to update the notes after the |
It's getting pretty close now, no? |
only two failed GST left |
fixed by #459, closing |
The test cases are located here:
https://github.com/ethereum/tests/tree/develop/BlockchainTests
https://github.com/ethereum/tests/tree/develop/GeneralStateTests
... and described here:
https://ethereum-tests.readthedocs.io/en/latest/test_types/blockchain_tests.html
https://ethereum-tests.readthedocs.io/en/latest/test_types/state_tests.html
We need to implement a simple test runner similar to the existing one in
test_vm_json.nim
. As these tests are significantly larger in size, it will probably be better if add the test suite repo as a git submodule (the CI scripts may have to be modified to fetch all submodules).Please consider that in the future, these tests will be executable over the JSON-RPC interface using retesteth. The internal APIs can be structured to simplify the implementation of the JSON-RPC procs described here:
ethereum/interfaces#4
ethereum/retesteth#5
The text was updated successfully, but these errors were encountered: