Revme

Is a binary that allows running statetest and eof validation.

$: revme --help
Usage: revme <COMMAND>

Commands:
  statetest       Execute Ethereum state tests
  eof-validation  Execute EOF validation tests
  evm             Run arbitrary EVM bytecode
  bytecode        Print the structure of an EVM bytecode
  bench           Run bench from specified list
  help            Print this message or the help of the given subcommand(s)

Options:
  -h, --help  Print help

Running eth tests

Eth tests are a suite of tests from the Ethereum Foundation that are used to test EVM implementations. Part of these tests are included in the revm repository in the tests folder.

Download eth tests git clone https://github.com/ethereum/tests. They can be run with revme using the following command: cargo run --release -p revme -- statetest tests/GeneralStateTests/ tests/LegacyTests/Constantinople/GeneralStateTests All statetest that can be run by revme can be found in the GeneralStateTests folder.