mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
14 lines
759 B
Rust
14 lines
759 B
Rust
#![allow(clippy::zombie_processes)]
|
|
fn main() {
|
|
// Things it should warn about:
|
|
std::process::Command::new("echo").args(["-n", "hello"]).spawn().unwrap();
|
|
//~^ ERROR: single argument that looks like it should be multiple arguments
|
|
//~| NOTE: `-D clippy::suspicious-command-arg-space` implied by `-D warnings`
|
|
std::process::Command::new("cat").args(["--number", "file"]).spawn().unwrap();
|
|
//~^ ERROR: single argument that looks like it should be multiple arguments
|
|
|
|
// 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();
|
|
}
|