[release/1.4.16] 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'.

(cherry picked from commit 1b7b2ba216)
This commit is contained in:
Felix Lange
2016-10-05 23:55:47 +02:00
parent 438efdab28
commit e97b30169b
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{}
)