mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
8e380679cc
This fixes the test failures recently observed in integration.shell.test_master.MasterTest.test_exit_status_correct_usage. The test failures were not a regression, but rather a symptom of a greater problem with the TestProgram class' shutdown() func. When terminating the process using the terminate_process helper from pytest-salt, it does not pass kill_children, which defaults to False. This makes the helper only kill the main PID, leaving all the other PIDs running. This means that every time the integration suite was being run, each time the TestProgram class was used to spawn a temporary daemon, it would leave all the child PIDs running when the shutdown() is invoked. By passing kill_children=True, we ensure that the child PIDs are also killed. This should provide a significant perfomance improvement in the test suite. |
||
---|---|---|
.. | ||
__init__.py | ||
testprogram.py |