Commit af9a06a7 authored by Florent Xicluna's avatar Florent Xicluna

#2777: Apply same recipe for test_terminate and test_kill, i.e. close or redirect fds.

parent d77eb9a8
......@@ -673,14 +673,16 @@ class POSIXProcessTestCase(unittest.TestCase):
self.assertNotEqual(p.wait(), 0)
def test_kill(self):
p = subprocess.Popen([sys.executable, "-c", "input()"])
p = subprocess.Popen([sys.executable, "-c", "input()"],
stdin=subprocess.PIPE, close_fds=True)
self.assertIsNone(p.poll())
p.kill()
self.assertEqual(p.wait(), -signal.SIGKILL)
def test_terminate(self):
p = subprocess.Popen([sys.executable, "-c", "input()"])
p = subprocess.Popen([sys.executable, "-c", "input()"],
stdin=subprocess.PIPE, close_fds=True)
self.assertIsNone(p.poll())
p.terminate()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment