fix(cli): remove duplicate short options from fuzz command (#3635)
- Remove short option from fuzz command edits option
- Remove short option from fuzz command iterations option
(cherry picked from commit b0e8e50a19)
This commit is contained in:
parent
0eb5b0a029
commit
d5a1266b25
1 changed files with 2 additions and 2 deletions
|
|
@ -263,9 +263,9 @@ struct Fuzz {
|
|||
pub skip: Option<Vec<String>>,
|
||||
#[arg(long, help = "Subdirectory to the language")]
|
||||
pub subdir: Option<String>,
|
||||
#[arg(long, short, help = "Maximum number of edits to perform per fuzz test")]
|
||||
#[arg(long, help = "Maximum number of edits to perform per fuzz test")]
|
||||
pub edits: Option<usize>,
|
||||
#[arg(long, short, help = "Number of fuzzing iterations to run per test")]
|
||||
#[arg(long, help = "Number of fuzzing iterations to run per test")]
|
||||
pub iterations: Option<usize>,
|
||||
#[arg(long, short, help = "Regex pattern to filter tests")]
|
||||
pub filter: Option<Regex>,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue