mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 06:03:57 +08:00
627074d0f9
Commit417f5ff40added a code to close fds and kill processes, which should have helped in an event of test case failure. In fact, each test case is executed in a subshell, so - any variables set there can't reach teardown(); - all the fds are closed (as the process is gone). Now, I am not sure about the processes, but the code being removed has never worked anyway, so it does not make sense to keep it. Normally, those are waited for. In case of a test case failure, well, the subsequent cases might fail, too. Fixes:417f5ff40dSigned-off-by: Kir Kolyshkin <kolyshkin@gmail.com>