aboutsummaryrefslogtreecommitdiffstats
path: root/tests/init.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2016-10-06 22:19:53 +0800
committerGitHub <noreply@github.com>2016-10-06 22:19:53 +0800
commiteeb2a1a6e3c7a0c77ee6836f3103708cff4102ad (patch)
tree092de74597c335d666af44b44f645b2ed597174f /tests/init.go
parent7335a70a020517cc9cebe7ae82c0e49ba133abf1 (diff)
parent1b7b2ba2163c7b2b2acc0c4f107951ad873cd8a4 (diff)
downloaddexon-eeb2a1a6e3c7a0c77ee6836f3103708cff4102ad.tar
dexon-eeb2a1a6e3c7a0c77ee6836f3103708cff4102ad.tar.gz
dexon-eeb2a1a6e3c7a0c77ee6836f3103708cff4102ad.tar.bz2
dexon-eeb2a1a6e3c7a0c77ee6836f3103708cff4102ad.tar.lz
dexon-eeb2a1a6e3c7a0c77ee6836f3103708cff4102ad.tar.xz
dexon-eeb2a1a6e3c7a0c77ee6836f3103708cff4102ad.tar.zst
dexon-eeb2a1a6e3c7a0c77ee6836f3103708cff4102ad.zip
Merge pull request #3094 from fjl/tests-update
tests: update test files from github.com/ethereum/tests @ 45bc1d21d3c1
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{}
)