summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_subprocess.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-02-28 10:43:08 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-02-28 10:43:08 (GMT)
commitab900c21fcfb08f13467d1c6f47d03ab90180f89 (patch)
treed2585129064d0de2bdb03aec77e790e89305de40 /Lib/test/test_subprocess.py
parentfdde79dbf6ae6d1d3b15770a2e87a5108197d826 (diff)
downloadcpython-ab900c21fcfb08f13467d1c6f47d03ab90180f89.zip
cpython-ab900c21fcfb08f13467d1c6f47d03ab90180f89.tar.gz
cpython-ab900c21fcfb08f13467d1c6f47d03ab90180f89.tar.bz2
Issue #21619: Popen objects no longer leave a zombie after exit in the with
statement if the pipe was broken. Patch by Martin Panter.
Diffstat (limited to 'Lib/test/test_subprocess.py')
-rw-r--r--Lib/test/test_subprocess.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
index 08af71f..caa36cf 100644
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -2521,6 +2521,21 @@ class ContextManagerTests(BaseTestCase):
stderr=subprocess.PIPE) as proc:
pass
+ def test_broken_pipe_cleanup(self):
+ """Broken pipe error should not prevent wait() (Issue 21619)"""
+ proc = subprocess.Popen([sys.executable, "-c",
+ "import sys;"
+ "sys.stdin.close();"
+ "sys.stdout.close();" # Signals that input pipe is closed
+ ], stdin=subprocess.PIPE, stdout=subprocess.PIPE)
+ proc.stdout.read() # Make sure subprocess has closed its input
+ proc.stdin.write(b"buffered data")
+ self.assertIsNone(proc.returncode)
+ self.assertRaises(BrokenPipeError, proc.__exit__, None, None, None)
+ self.assertEqual(0, proc.returncode)
+ self.assertTrue(proc.stdin.closed)
+ self.assertTrue(proc.stdout.closed)
+
def test_main():
unit_tests = (ProcessTestCase,