fuzz: use new "<"/">" operators in fuzz_test

This commit is contained in:
Daniel Hofstetter 2025-02-21 14:58:54 +01:00
parent 34fb0dd197
commit 41f1c6b2da

View file

@ -65,6 +65,14 @@ fn generate_test_args() -> Vec<TestArg> {
arg: "!=".to_string(),
arg_type: ArgType::STRINGSTRING,
},
TestArg {
arg: ">".to_string(),
arg_type: ArgType::STRINGSTRING,
},
TestArg {
arg: "<".to_string(),
arg_type: ArgType::STRINGSTRING,
},
TestArg {
arg: "-eq".to_string(),
arg_type: ArgType::INTEGERINTEGER,