aboutsummaryrefslogtreecommitdiffstats
path: root/tests/init_test.go
Commit message (Collapse)AuthorAgeFilesLines
* tests: update slow test lists, skip on windows/386 (#17758)Felix Lange2018-09-291-6/+11
|
* core/vm, tests: update tests, enable constantinople statetests, fix SAR ↵Martin Holst Swende2018-09-041-0/+10
| | | | | | | | | | | | | | | opcode (#17538) This commit does a few things at once: - Updates the tests to contain the latest data from ethereum/tests repo. - Enables Constantinople state tests. This is needed to be able to fuzz-test the evm with constantinople rules. - Fixes the error in opSAR that we've known about for some time. I was kind of saving it to see if we hit upon it with the random test generator, but it's difficult to both enable the tests and have the bug there -- we don't want to forget about it, so maybe it's better to just fix it.
* tests: golint fixes for tests directory (#16640)Eli2018-05-021-6/+5
|
* all: update license information (#16089)Felix Lange2018-02-141-1/+1
|
* tests: add ethash difficulty tests (#15191)Martin Holst Swende2017-09-271-0/+1
|
* tests: update tests and implement general state tests (#14734)Felix Lange2017-07-111-0/+263
Tests are now included as a submodule. This should make updating easier and removes ~60MB of JSON data from the working copy. State tests are replaced by General State Tests, which run the same test with multiple fork configurations. With the new test runner, consensus tests are run as subtests by walking json files. Many hex issues have been fixed upstream since the last update and most custom parsing code is replaced by existing JSON hex types. Tests can now be marked as 'expected failures', ensuring that fixes for those tests will trigger an update to test configuration. The new test runner also supports parallel execution and the -short flag.