Skip to content
Merged
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
10 changes: 5 additions & 5 deletions bins/revme/src/cmd/statetest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,25 @@ pub struct Cmd {
/// If multiple paths are specified they will be run in sequence.
///
/// Folders will be searched recursively for files with the extension `.json`.
#[clap(required = true, num_args = 1..)]
#[arg(required = true, num_args = 1..)]
paths: Vec<PathBuf>,
/// Run tests in a single thread
#[clap(short = 's', long)]
#[arg(short = 's', long)]
single_thread: bool,
/// Output results in JSON format
///
/// It will stop second run of evm on failure.
#[clap(long)]
#[arg(long)]
json: bool,
/// Output outcome in JSON format
///
/// If `--json` is true, this is implied.
///
/// It will stop second run of EVM on failure.
#[clap(short = 'o', long)]
#[arg(short = 'o', long)]
json_outcome: bool,
/// Keep going after a test failure
#[clap(long, alias = "no-fail-fast")]
#[arg(long, alias = "no-fail-fast")]
keep_going: bool,
}

Expand Down
Loading