Skip to content

Commit d200eea

Browse files
protolambdamarioevzMariusVanDerWijden
authored
build: Update EEST to v4.5.0 (ethereum/go-ethereum#31880) (#612)
We deleted outdated [email protected] release by mistake, so this PR updates the referenced EEST release to the correct latest version. @s1na I removed the TODO comment because I think this solves it, unless it meant something else. --------- Co-authored-by: Mario Vega <[email protected]> Co-authored-by: MariusVanDerWijden <[email protected]>
1 parent 5cc136b commit d200eea

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

build/checksums.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# This file contains sha256 checksums of optional build dependencies.
22

3-
# version:spec-tests [email protected].0
3+
# version:spec-tests v4.5.0
44
# https://github.com/ethereum/execution-spec-tests/releases
5-
# https://github.com/ethereum/execution-spec-tests/releases/download/pectra-devnet-6%40v1.0.0/
6-
b69211752a3029083c020dc635fe12156ca1a6725a08559da540a0337586a77e fixtures_pectra-devnet-6.tar.gz
5+
# https://github.com/ethereum/execution-spec-tests/releases/download/v4.5.0/
6+
58afb92a0075a2cb7c4dec1281f7cb88b21b02afbedad096b580f3f8cc14c54c fixtures_develop.tar.gz
77

88
# version:golang 1.24.2
99
# https://go.dev/dl/

build/ci.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ func downloadSpecTestFixtures(csdb *build.ChecksumDB, cachedir string) string {
338338
log.Fatal(err)
339339
}
340340
ext := ".tar.gz"
341-
base := "fixtures_pectra-devnet-6" // TODO(s1na) rename once the version becomes part of the filename
341+
base := "fixtures_develop"
342342
url := fmt.Sprintf("https://github.com/ethereum/execution-spec-tests/releases/download/%s/%s%s", executionSpecTestsVersion, base, ext)
343343
archivePath := filepath.Join(cachedir, base+ext)
344344
if err := csdb.DownloadFile(url, archivePath); err != nil {

tests/block_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,9 @@ func TestExecutionSpecBlocktests(t *testing.T) {
8181
}
8282
bt := new(testMatcher)
8383

84+
bt.skipLoad(".*prague/eip7251_consolidations/contract_deployment/system_contract_deployment.json")
85+
bt.skipLoad(".*prague/eip7002_el_triggerable_withdrawals/contract_deployment/system_contract_deployment.json")
86+
8487
bt.walk(t, executionSpecBlockchainTestDir, func(t *testing.T, name string, test *BlockTest) {
8588
execBlockTest(t, bt, test)
8689
})

0 commit comments

Comments
 (0)