Skip to content

Commit f70c650

Browse files
Update spec tests to v1.6.0-beta.1 (#8263)
Update the EF spec tests to v1.6.0-beta.1 There are a few new light client tests (which we pass), and some for progressive containers, which we haven't implemented (we ignore them). Co-Authored-By: Michael Sproul <[email protected]>
1 parent b69c2f5 commit f70c650

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

testing/ef_tests/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# To download/extract nightly tests, run:
22
# CONSENSUS_SPECS_TEST_VERSION=nightly make
3-
CONSENSUS_SPECS_TEST_VERSION ?= v1.6.0-alpha.6
3+
CONSENSUS_SPECS_TEST_VERSION ?= v1.6.0-beta.1
44
REPO_NAME := consensus-spec-tests
55
OUTPUT_DIR := ./$(REPO_NAME)
66

testing/ef_tests/check_all_files_accessed.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@
5454
"tests/general/phase0/ssz_generic/basic_progressive_list",
5555
"tests/general/phase0/ssz_generic/containers/.*/ProgressiveBitsStruct.*",
5656
"tests/general/phase0/ssz_generic/containers/.*/ProgressiveTestStruct.*",
57+
"tests/general/phase0/ssz_generic/progressive_containers/.*",
58+
"tests/general/phase0/ssz_generic/compatible_unions/.*",
5759
# Ignore full epoch tests for now (just test the sub-transitions).
5860
"tests/.*/.*/epoch_processing/.*/pre_epoch.ssz_snappy",
5961
"tests/.*/.*/epoch_processing/.*/post_epoch.ssz_snappy",

testing/ef_tests/download_test_vectors.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ else
5757
if [[ ! -e "${test}.tar.gz" ]]; then
5858
echo "Downloading: ${version}/${test}.tar.gz"
5959
curl --progress-bar --location --remote-name --show-error --retry 3 --retry-all-errors --fail \
60-
"https://github.com/ethereum/consensus-spec-tests/releases/download/${version}/${test}.tar.gz" \
60+
"https://github.com/ethereum/consensus-specs/releases/download/${version}/${test}.tar.gz" \
6161
|| {
6262
echo "Curl failed. Aborting"
6363
rm -f "${test}.tar.gz"

testing/ef_tests/src/handler.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1083,8 +1083,7 @@ impl<E: EthSpec + TypeName> Handler for LightClientUpdateHandler<E> {
10831083

10841084
fn is_enabled_for_fork(&self, fork_name: ForkName) -> bool {
10851085
// Enabled in Altair
1086-
// No test in Fulu yet.
1087-
fork_name.altair_enabled() && fork_name != ForkName::Fulu
1086+
fork_name.altair_enabled()
10881087
}
10891088
}
10901089

0 commit comments

Comments
 (0)