go-ethereum/tests/files
Jeffrey Wilcke db567eb01d [release/1.4.20] core, core/state: fixed consensus issue added touch revert
Implemented proper touch revert journal entries and copied a Parity
consensus bug in order to remain in sync with the current longest chain.
2016-11-24 23:28:49 +01:00
..
ABITests core, core/state, trie: Hardfork EIP155, EIP161, EIP170 2016-11-15 12:40:36 +01:00
ansible core, core/state, trie: Hardfork EIP155, EIP161, EIP170 2016-11-15 12:40:36 +01:00
BasicTests core, core/state, trie: Hardfork EIP155, EIP161, EIP170 2016-11-15 12:40:36 +01:00
BlockchainTests core, core/state, trie: Hardfork EIP155, EIP161, EIP170 2016-11-15 12:40:36 +01:00
GenesisTests core, core/state, trie: Hardfork EIP155, EIP161, EIP170 2016-11-15 12:40:36 +01:00
KeyStoreTests core, core/state, trie: Hardfork EIP155, EIP161, EIP170 2016-11-15 12:40:36 +01:00
PoWTests core, core/state, trie: Hardfork EIP155, EIP161, EIP170 2016-11-15 12:40:36 +01:00
RLPTests core, core/state, trie: Hardfork EIP155, EIP161, EIP170 2016-11-15 12:40:36 +01:00
StateTests [release/1.4.20] core, core/state: fixed consensus issue added touch revert 2016-11-24 23:28:49 +01:00
TransactionTests core, core/state, trie: Hardfork EIP155, EIP161, EIP170 2016-11-15 12:40:36 +01:00
TrieTests core, core/state, trie: Hardfork EIP155, EIP161, EIP170 2016-11-15 12:40:36 +01:00
VMTests core, core/state, trie: Hardfork EIP155, EIP161, EIP170 2016-11-15 12:40:36 +01:00
.gitignore Add 'tests/files/' from commit 'ce7204fa17560f6a76c7592bf5f23d29f22042d6' 2015-03-02 16:43:12 +01:00
README.md core, core/state, trie: Hardfork EIP155, EIP161, EIP170 2016-11-15 12:40:36 +01:00
TODO core, core/state, trie: Hardfork EIP155, EIP161, EIP170 2016-11-15 12:40:36 +01:00

tests Build Status

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.