From f8a65f840cc26d96e095cfe1ed22bb04e25d0a05 Mon Sep 17 00:00:00 2001 From: Gary Rong Date: Thu, 9 Jul 2026 10:46:31 +0800 Subject: [PATCH] tests: skip tests temporarily --- tests/block_test.go | 1 + tests/transaction_test.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/block_test.go b/tests/block_test.go index a054e59e0f..8c1a7ace0f 100644 --- a/tests/block_test.go +++ b/tests/block_test.go @@ -94,6 +94,7 @@ func TestExecutionSpecBlocktests(t *testing.T) { // Broken tests bt.skipLoad(`.*eip7610_create_collision/initcollision/.*`) bt.skipLoad(`.*eip7610_create_collision/revert_in_create/.*`) + bt.skipLoad(`.*stRandom2/random_statetest642/.*`) bt.walk(t, executionSpecBlockchainTestDir, func(t *testing.T, name string, test *BlockTest) { execBlockTest(t, bt, test) diff --git a/tests/transaction_test.go b/tests/transaction_test.go index 73ee3aa16a..da9de48bc8 100644 --- a/tests/transaction_test.go +++ b/tests/transaction_test.go @@ -70,7 +70,7 @@ func TestExecutionSpecTransaction(t *testing.T) { st := new(testMatcher) // Emptiness of authorization list is only validated during the tx precheck - st.skipLoad("^prague/eip7702_set_code_tx/test_empty_authorization_list.json") + st.skipLoad(`eip7702_set_code_tx/invalid_tx/empty_authorization_list\.json`) st.walk(t, executionSpecTransactionTestDir, func(t *testing.T, name string, test *TransactionTest) { if err := st.checkFailure(t, test.Run()); err != nil {