aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testdata
Commit message (Collapse)AuthorAgeFilesLines
* dex: add api_backend.go and it's dependenciesWei-Ning Huang2019-04-091-0/+0
|
* Add initial DEXON consensus engine implementation skeletonWei-Ning Huang2019-04-091-0/+0
|
* core, cmd/puppeth: implement constantinople fix, disable EIP-1283 (#18486)Martin Holst Swende2019-01-301-0/+0
| | | | | | | | | | | | | | | | | This PR adds a new fork which disables EIP-1283. Internally it's called Petersburg, but the genesis/config field is ConstantinopleFix. The block numbers are: 7280000 for Constantinople on Mainnet 7280000 for ConstantinopleFix on Mainnet 4939394 for ConstantinopleFix on Ropsten 9999999 for ConstantinopleFix on Rinkeby (real number decided later) This PR also defaults to using the same ConstantinopleFix number as whatever Constantinople is set to. That is, it will default to mainnet behaviour if ConstantinopleFix is not set.This means that for private networks which have already transitioned to Constantinople, this PR will break the network unless ConstantinopleFix is explicitly set!
* tests, core: update tests and make STATICCALL cause touch-delete (#18187)Martin Holst Swende2018-11-291-0/+0
|
* tests: update tests, implement no-pow blocks (#17902)Martin Holst Swende2018-10-161-0/+0
| | | | This commit updates our tests with the latest and greatest from ethereum/tests. It also contains implementation of NoProof for blockchain tests.
* 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.