diff options
author | Felix Lange <fjl@users.noreply.github.com> | 2017-07-11 19:49:14 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-11 19:49:14 +0800 |
commit | 225de7ca0a9e861696a5a43b666090b574c4c769 (patch) | |
tree | 68aff6fb74fece37626ced330fa9c5da91b483a4 /tests/files/README.md | |
parent | bd01cd7183e771984fb9c008e7a7ebf0a0c3f9ba (diff) | |
download | go-tangerine-225de7ca0a9e861696a5a43b666090b574c4c769.tar go-tangerine-225de7ca0a9e861696a5a43b666090b574c4c769.tar.gz go-tangerine-225de7ca0a9e861696a5a43b666090b574c4c769.tar.bz2 go-tangerine-225de7ca0a9e861696a5a43b666090b574c4c769.tar.lz go-tangerine-225de7ca0a9e861696a5a43b666090b574c4c769.tar.xz go-tangerine-225de7ca0a9e861696a5a43b666090b574c4c769.tar.zst go-tangerine-225de7ca0a9e861696a5a43b666090b574c4c769.zip |
tests: update tests and implement general state tests (#14734)
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.
Diffstat (limited to 'tests/files/README.md')
-rw-r--r-- | tests/files/README.md | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/tests/files/README.md b/tests/files/README.md deleted file mode 100644 index 3379359e5..000000000 --- a/tests/files/README.md +++ /dev/null @@ -1,38 +0,0 @@ -tests [![Build Status](https://travis-ci.org/ethereum/tests.svg?branch=develop)](https://travis-ci.org/ethereum/tests) -===== - -Common tests for all clients to test against. See the documentation http://www.ethdocs.org/en/latest/contracts-and-transactions/ethereum-tests/index.html - -Do not chagne test files in folders: -* StateTests -* BlockchainTests -* TransactionTests -* VMTests - -It is being created by the testFillers which could be found at https://github.com/ethereum/cpp-ethereum/tree/develop/test/libethereum - -If you want to modify a test filler or add a new test please contact @winsvega at https://gitter.im/ethereum/cpp-ethereum - - - -All files should be of the form: - -``` -{ - "test1name": - { - "test1property1": ..., - "test1property2": ..., - ... - }, - "test2name": - { - "test2property1": ..., - "test2property2": ..., - ... - } -} -``` - -Arrays are allowed, but don't use them for sets of properties - only use them for data that is clearly a continuous contiguous sequence of values. - |