Jeffrey Wilcke 64af2aafda core, core/vm: added gas price variance table 9 年之前
..
ABITests 4f4d2b6474 tests: updated homestead tests 9 年之前
BasicTests 1b7b2ba216 tests: update test files from github.com/ethereum/tests @ 45bc1d21d3c1 9 年之前
BlockchainTests 64af2aafda core, core/vm: added gas price variance table 9 年之前
GenesisTests 4f4d2b6474 tests: updated homestead tests 9 年之前
KeyStoreTests 4f4d2b6474 tests: updated homestead tests 9 年之前
PoWTests 4f4d2b6474 tests: updated homestead tests 9 年之前
RLPTests 4f4d2b6474 tests: updated homestead tests 9 年之前
StateTests 64af2aafda core, core/vm: added gas price variance table 9 年之前
TransactionTests 1b7b2ba216 tests: update test files from github.com/ethereum/tests @ 45bc1d21d3c1 9 年之前
TrieTests 4f4d2b6474 tests: updated homestead tests 9 年之前
VMTests 1b7b2ba216 tests: update test files from github.com/ethereum/tests @ 45bc1d21d3c1 9 年之前
.gitignore 0823254c3b Add 'tests/files/' from commit 'ce7204fa17560f6a76c7592bf5f23d29f22042d6' 10 年之前
README.md 1b7b2ba216 tests: update test files from github.com/ethereum/tests @ 45bc1d21d3c1 9 年之前
TODO 4f4d2b6474 tests: updated homestead tests 9 年之前

README.md

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.