SIGILL -> SIGKILL in process test

Fairly sure this was a typo. cc: @s0undt3ch
This commit is contained in:
Mike Place 2016-10-31 20:54:42 +13:00
parent 7f1654894d
commit a6b7417fe9
No known key found for this signature in database
GPG key ID: 9136F4F13705CFD3

View file

@ -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()