Merge pull request #37340 from cachedout/ill_kill_3

SIGILL -> SIGKILL in process test
This commit is contained in:
Mike Place 2016-10-31 21:50:10 +13:00 committed by GitHub
commit 25c987e33a

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