aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testdata
Commit message (Collapse)AuthorAgeFilesLines
* core/vm, tests: update tests, enable constantinople statetests, fix SAR ↵Martin Holst Swende2018-09-041-0/+0
| | | | | | | | | | | | | | | 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: update to upstream commit 2bb0c3da3b (#15806)Felix Lange2018-01-041-0/+0
| | | | Also raise traceLimit once again and print the VM error and output on failure.
* tests: add ethash difficulty tests (#15191)Martin Holst Swende2017-09-271-0/+0
|
* params: Updated finalized gascosts for ECMUL/MODEXP (#15135)Martin Holst Swende2017-09-141-0/+0
| | | | | | | | | | | | * params: Updated finalized gascosts for ECMUL/MODEXP * core,tests: Updates pending new tests * tests: Updated with new tests * core: revert state transition bugfix * tests: Add expected failures due to #15119
* core, tests: implement Metropolis EIP 684Péter Szilágyi2017-08-251-0/+0
|
* consensus, core, tests: implement Metropolis EIP 649Péter Szilágyi2017-08-241-0/+0
|
* tests: pull in new test suite, enable most block testsPéter Szilágyi2017-08-221-0/+0
|
* tests: pull in latest tests from upstreamPéter Szilágyi2017-08-161-0/+0
|
* tests: update tests, use blockchain test "network" fieldFelix Lange2017-08-111-0/+0
| | | | | | | | | Blockchain tests now include the "network" which determines the chain config to use. Remove config matching based on test name and share the name-to-config index with state tests. Byzantium/Constantinople tests are still skipped because most of them fail anyway.
* tests: update tests and implement general state tests (#14734)Felix Lange2017-07-111-0/+0
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.