aboutsummaryrefslogtreecommitdiffstats
path: root/tests/init.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2016-10-06 05:55:47 +0800
committerFelix Lange <fjl@twurst.com>2016-10-06 21:36:21 +0800
commit1b7b2ba2163c7b2b2acc0c4f107951ad873cd8a4 (patch)
tree0d8d9cd20dc8584599209cbce1cffae0b0e0516d /tests/init.go
parent2acb9a6ea7ddab541122ede96f2275598ae36931 (diff)
downloadgo-tangerine-1b7b2ba2163c7b2b2acc0c4f107951ad873cd8a4.tar
go-tangerine-1b7b2ba2163c7b2b2acc0c4f107951ad873cd8a4.tar.gz
go-tangerine-1b7b2ba2163c7b2b2acc0c4f107951ad873cd8a4.tar.bz2
go-tangerine-1b7b2ba2163c7b2b2acc0c4f107951ad873cd8a4.tar.lz
go-tangerine-1b7b2ba2163c7b2b2acc0c4f107951ad873cd8a4.tar.xz
go-tangerine-1b7b2ba2163c7b2b2acc0c4f107951ad873cd8a4.tar.zst
go-tangerine-1b7b2ba2163c7b2b2acc0c4f107951ad873cd8a4.zip
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'.
Diffstat (limited to 'tests/init.go')
-rw-r--r--tests/init.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/init.go b/tests/init.go
index 0c07f8b23..366a930dc 100644
--- a/tests/init.go
+++ b/tests/init.go
@@ -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{}
)