From d5ec2dc0d2de6ea98ce9bdeba10c8a98b996a4e8 Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Tue, 13 Aug 2019 14:56:18 +0200 Subject: [PATCH] tests: disable some non-wellformed tests --- tests/block_test.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/block_test.go b/tests/block_test.go index 40434ae837..33eaed1e1a 100644 --- a/tests/block_test.go +++ b/tests/block_test.go @@ -30,6 +30,13 @@ func TestBlockchain(t *testing.T) { bt.skipLoad(`.*bcForgedTest/bcForkUncle\.json`) bt.skipLoad(`.*bcMultiChainTest/(ChainAtoChainB_blockorder|CallContractFromNotBestBlock)`) bt.skipLoad(`.*bcTotalDifficultyTest/(lotsOfLeafs|lotsOfBranches|sideChainWithMoreTransactions)`) + + // These are not formatted like the rest -- due to the large postState, the postState + // was replaced by a hash, instead of a genesisAlloc map + // See https://github.com/ethereum/tests/pull/616 + bt.skipLoad(`.*bcExploitTest/ShanghaiLove.json`) + bt.skipLoad(`.*bcExploitTest/SuicideIssue.json`) + // Slow tests bt.slow(`.*bcExploitTest/DelegateCallSpam.json`) bt.slow(`.*bcExploitTest/ShanghaiLove.json`)