From bdf1a72cfc7f32997ac4d62f109a3aca0730b479 Mon Sep 17 00:00:00 2001 From: Gary Rong Date: Tue, 23 Apr 2024 13:37:37 +0800 Subject: [PATCH] tests: reenable eip6780 tests --- tests/block_test.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tests/block_test.go b/tests/block_test.go index 43e3d99b3e..75bb8255f5 100644 --- a/tests/block_test.go +++ b/tests/block_test.go @@ -63,15 +63,6 @@ func TestExecutionSpecBlocktests(t *testing.T) { t.Skipf("directory %s does not exist", executionSpecBlockchainTestDir) } bt := new(testMatcher) - - // These tests fail as of https://github.com/ethereum/go-ethereum/pull/28666, since we - // no longer delete "leftover storage" when deploying a contract. - bt.skipLoad(`^cancun/eip6780_selfdestruct/selfdestruct/self_destructing_initcode_create_tx.json`) - bt.skipLoad(`^cancun/eip6780_selfdestruct/selfdestruct/self_destructing_initcode.json`) - bt.skipLoad(`^cancun/eip6780_selfdestruct/selfdestruct/recreate_self_destructed_contract_different_txs.json`) - bt.skipLoad(`^cancun/eip6780_selfdestruct/selfdestruct/delegatecall_from_new_contract_to_pre_existing_contract.json`) - bt.skipLoad(`^cancun/eip6780_selfdestruct/selfdestruct/create_selfdestruct_same_tx.json`) - bt.walk(t, executionSpecBlockchainTestDir, func(t *testing.T, name string, test *BlockTest) { execBlockTest(t, bt, test) })