Add more test cases for suspicious_command_arg_space.

This commit is contained in:
Mara Bos 2023-02-10 22:35:23 +01:00
parent 8f56767c94
commit 805a0ae2df

View File

@ -1,5 +1,10 @@
fn main() {
std::process::Command::new("echo").arg("hello world").spawn().unwrap();
// Things it should warn about:
std::process::Command::new("echo").arg("-n hello").spawn().unwrap();
std::process::Command::new("cat").arg("--number file").spawn().unwrap();
// Things it should not warn about:
std::process::Command::new("echo").arg("hello world").spawn().unwrap();
std::process::Command::new("a").arg("--fmt=%a %b %c").spawn().unwrap();
std::process::Command::new("b").arg("-ldflags=-s -w").spawn().unwrap();
}