]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#2777: Handle fds more carefully to try to fix some x86-Linux failures (namely, neal...
authorFlorent Xicluna <florent.xicluna@gmail.com>
Fri, 5 Mar 2010 19:31:21 +0000 (19:31 +0000)
committerFlorent Xicluna <florent.xicluna@gmail.com>
Fri, 5 Mar 2010 19:31:21 +0000 (19:31 +0000)
Lib/test/test_subprocess.py

index 84ea9ed8bf730b84a3ad8c781fdfa5ecfa23b2b3..7437e6c3fb5c7a74f1bb6e809d8e86f0302236b8 100644 (file)
@@ -651,7 +651,10 @@ class POSIXProcessTestCase(unittest.TestCase):
         self.assertEqual(rc, 47)
 
     def test_send_signal(self):
-        p = subprocess.Popen([sys.executable, "-c", "input()"])
+        # Do not inherit file handles from the parent.
+        # It should fix failures on some platforms.
+        p = subprocess.Popen([sys.executable, "-c", "input()"], close_fds=True,
+                             stdin=subprocess.PIPE, stderr=subprocess.PIPE)
 
         # Let the process initialize correctly (Issue #3137)
         time.sleep(0.1)
@@ -672,14 +675,14 @@ class POSIXProcessTestCase(unittest.TestCase):
     def test_kill(self):
         p = subprocess.Popen([sys.executable, "-c", "input()"])
 
-        self.assertIs(p.poll(), None)
+        self.assertIsNone(p.poll())
         p.kill()
         self.assertEqual(p.wait(), -signal.SIGKILL)
 
     def test_terminate(self):
         p = subprocess.Popen([sys.executable, "-c", "input()"])
 
-        self.assertIs(p.poll(), None)
+        self.assertIsNone(p.poll())
         p.terminate()
         self.assertEqual(p.wait(), -signal.SIGTERM)