Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: fix clippy::zombie_processes findings
of the form: ``` error: spawned process is never `wait()`ed on --> tests/tests.rs:47:19 | 47 | let mut srv = server_command() | ___________________^ 48 | | .arg("1337") 49 | | .spawn() 50 | | .expect("cannot run server example"); | |____________________________________________^ | = note: consider calling `.wait()` = note: not doing so might leave behind zombie processes = note: see https://doc.rust-lang.org/stable/std/process/struct.Child.html#warning = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#zombie_processes = note: `-D clippy::zombie-processes` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::zombie_processes)]` ```
- Loading branch information