From 17cb7c4264642c052db8a423912e6ce3b585ba98 Mon Sep 17 00:00:00 2001 From: Jared Wasinger Date: Wed, 19 Jun 2024 15:15:38 -0700 Subject: [PATCH] tests: re-enable blockchain GeneralStateTests (state tests converted to blockchain test format). Disable VMTests VMPerformance suite. --- tests/block_test.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/block_test.go b/tests/block_test.go index 1ba84f5f24..10ea035c7c 100644 --- a/tests/block_test.go +++ b/tests/block_test.go @@ -26,11 +26,7 @@ import ( func TestBlockchain(t *testing.T) { bt := new(testMatcher) - // General state tests are 'exported' as blockchain tests, but we can run them natively. - // For speedier CI-runs, the line below can be uncommented, so those are skipped. - // For now, in hardfork-times (Berlin), we run the tests both as StateTests and - // as blockchain tests, since the latter also covers things like receipt root - bt.skipLoad(`^GeneralStateTests/`) + bt.skipLoad(`^GeneralStateTests/VMTests/vmPerformance`) // Skip random failures due to selfish mining test bt.skipLoad(`.*bcForgedTest/bcForkUncle\.json`)