tests: update test files from github.com/ethereum/tests @ 45bc1d21d3c1

Two new tests are skipped because they're buggy. Making some newer
random state tests work required implementing the 'compressed return
value encoding'.
This commit is contained in:
Felix Lange
2016-10-05 23:55:47 +02:00
parent 2acb9a6ea7
commit 1b7b2ba216
746 changed files with 188558 additions and 65755 deletions

View File

@ -45,6 +45,9 @@ var (
"ChainAtoChainB_blockorder2",
"ChainAtoChainB_blockorder1",
"GasLimitHigherThan2p63m1", // not yet ;)
"SuicideIssue", // fails genesis check
}
/* Go client does not support transaction (account) nonces above 2^64. This
@ -52,7 +55,9 @@ var (
engineering constraint" as accounts cannot easily reach such high
nonce values in practice
*/
TransSkipTests = []string{"TransactionWithHihghNonce256"}
TransSkipTests = []string{
"TransactionWithHihghNonce256",
}
StateSkipTests = []string{}
VmSkipTests = []string{}
)