Remove a redundant condition in expect_stdout
When the loop exits, either the process has stopped running, or the deadline has passed. If the process is still running, we want to kill it.
This commit is contained in:
parent
0343e28d3a
commit
17a3612b36
|
@ -231,7 +231,7 @@ impl<T> TestChild<T> {
|
|||
}
|
||||
}
|
||||
|
||||
if self.past_deadline() && self.is_running() {
|
||||
if self.is_running() {
|
||||
// If the process exits between is_running and kill, we will see
|
||||
// spurious errors here. If that happens, ignore "no such process"
|
||||
// errors from kill.
|
||||
|
|
Loading…
Reference in New Issue