Files
reth/testing/runner/src/main.rs
Ignacio Hagopian 394a53d7b0 feat(stateless): Run EEST tests in stateless block validator & bug fixes (#18140)
Signed-off-by: Ignacio Hagopian <jsign.uy@gmail.com>
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
2025-09-09 12:48:14 +00:00

18 lines
446 B
Rust

//! Command-line interface for running tests.
use std::path::PathBuf;
use clap::Parser;
use ef_tests::{cases::blockchain_test::BlockchainTests, Suite};
/// Command-line arguments for the test runner.
#[derive(Debug, Parser)]
pub struct TestRunnerCommand {
/// Path to the test suite
suite_path: PathBuf,
}
fn main() {
let cmd = TestRunnerCommand::parse();
BlockchainTests::new(cmd.suite_path.join("blockchain_tests")).run();
}