mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #37340 from cachedout/ill_kill_3
SIGILL -> SIGKILL in process test
This commit is contained in:
commit
25c987e33a
1 changed files with 4 additions and 4 deletions
|
@ -45,7 +45,7 @@ class TestProcessManager(TestCase):
|
|||
time.sleep(0.5)
|
||||
# Are there child processes still running?
|
||||
if process_manager._process_map.keys():
|
||||
process_manager.send_signal_to_processes(signal.SIGILL)
|
||||
process_manager.send_signal_to_processes(signal.SIGKILL)
|
||||
process_manager.stop_restarting()
|
||||
process_manager.kill_children()
|
||||
|
||||
|
@ -71,7 +71,7 @@ class TestProcessManager(TestCase):
|
|||
time.sleep(0.5)
|
||||
# Are there child processes still running?
|
||||
if process_manager._process_map.keys():
|
||||
process_manager.send_signal_to_processes(signal.SIGILL)
|
||||
process_manager.send_signal_to_processes(signal.SIGKILL)
|
||||
process_manager.stop_restarting()
|
||||
process_manager.kill_children()
|
||||
|
||||
|
@ -95,7 +95,7 @@ class TestProcessManager(TestCase):
|
|||
time.sleep(0.5)
|
||||
# Are there child processes still running?
|
||||
if process_manager._process_map.keys():
|
||||
process_manager.send_signal_to_processes(signal.SIGILL)
|
||||
process_manager.send_signal_to_processes(signal.SIGKILL)
|
||||
process_manager.stop_restarting()
|
||||
process_manager.kill_children()
|
||||
|
||||
|
@ -119,7 +119,7 @@ class TestProcessManager(TestCase):
|
|||
time.sleep(0.5)
|
||||
# Are there child processes still running?
|
||||
if process_manager._process_map.keys():
|
||||
process_manager.send_signal_to_processes(signal.SIGILL)
|
||||
process_manager.send_signal_to_processes(signal.SIGKILL)
|
||||
process_manager.stop_restarting()
|
||||
process_manager.kill_children()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue