Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion bins/revme/src/cmd/statetest/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,9 @@ pub fn execute_test_suite(
cfg.spec = spec_name.to_spec_id();

// Configure max blobs per spec
if cfg.spec.is_enabled_in(SpecId::PRAGUE) {
if cfg.spec.is_enabled_in(SpecId::OSAKA) {
cfg.set_max_blobs_per_tx(6);
} else if cfg.spec.is_enabled_in(SpecId::PRAGUE) {
cfg.set_max_blobs_per_tx(9);
} else {
cfg.set_max_blobs_per_tx(6);
Expand Down
6 changes: 4 additions & 2 deletions scripts/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ set -e

# Version for the execution spec tests
VERSION="v4.4.0"
DEVELOP_VERSION="[email protected]"

# Directories
FIXTURES_DIR="test-fixtures"
STABLE_DIR="$FIXTURES_DIR/stable"
Expand All @@ -14,7 +16,7 @@ LEGACY_DIR="$FIXTURES_DIR/legacytests"
# URL and filenames
FIXTURES_URL="https://github.com/ethereum/execution-spec-tests/releases/download"
STABLE_TAR="fixtures_stable.tar.gz"
DEVELOP_TAR="fixtures_develop.tar.gz"
DEVELOP_TAR="fixtures_fusaka-devnet-3.tar.gz"
LEGACY_REPO_URL="https://github.com/ethereum/legacytests.git"

# Print usage information and exit
Expand Down Expand Up @@ -90,7 +92,7 @@ download_fixtures() {
mkdir -p "$STABLE_DIR" "$DEVELOP_DIR" "$LEGACY_DIR"

download_and_extract "$STABLE_DIR" "$STABLE_TAR" "stable" "$VERSION"
download_and_extract "$DEVELOP_DIR" "$DEVELOP_TAR" "develop" "$VERSION"
download_and_extract "$DEVELOP_DIR" "$DEVELOP_TAR" "develop" "$DEVELOP_VERSION"

echo "Cleaning up tar files..."
rm "${FIXTURES_DIR}/${STABLE_TAR}" "${FIXTURES_DIR}/${DEVELOP_TAR}"
Expand Down
Loading