summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_subprocess.py
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2010-03-05 20:26:54 (GMT)
committerFlorent Xicluna <florent.xicluna@gmail.com>2010-03-05 20:26:54 (GMT)
commit1d8ee3afb8adfeb4e4713c42631687b97c421043 (patch)
tree1626799c404195840b5c1621108b40249bdd3a22 /Lib/test/test_subprocess.py
parentf9cee224461273307ca9f8a0e690a527496534ab (diff)
downloadcpython-1d8ee3afb8adfeb4e4713c42631687b97c421043.zip
cpython-1d8ee3afb8adfeb4e4713c42631687b97c421043.tar.gz
cpython-1d8ee3afb8adfeb4e4713c42631687b97c421043.tar.bz2
Merged revisions 78701 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r78701 | florent.xicluna | 2010-03-05 20:31:21 +0100 (ven, 05 mar 2010) | 2 lines #2777: Handle fds more carefully to try to fix some x86-Linux failures (namely, neal bot and twisted bot). ........
Diffstat (limited to 'Lib/test/test_subprocess.py')
-rw-r--r--Lib/test/test_subprocess.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
index 09cfee8..24c3bf9 100644
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -649,7 +649,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)
@@ -670,14 +673,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)