summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/suspicious_command_arg_space.rs
blob: bdc6113a250015a31f1e56693344a1f524a32906 (plain)
1
2
3
4
5
6
7
8
9
10
fn main() {
    // 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();
}