Commit 624aa178 authored by Andrei Vagin's avatar Andrei Vagin Committed by Pavel Emelyanov

zdtm: don't call Popen() without wait()

We have to collect all zombies
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent d77d8cc4
...@@ -1712,7 +1712,7 @@ def run_tests(opts): ...@@ -1712,7 +1712,7 @@ def run_tests(opts):
finally: finally:
l.finish() l.finish()
if opts['join_ns']: if opts['join_ns']:
subprocess.Popen(["ip", "netns", "delete", "zdtm_netns"]) subprocess.Popen(["ip", "netns", "delete", "zdtm_netns"]).wait()
sti_fmt = "%-40s%-10s%s" sti_fmt = "%-40s%-10s%s"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment