Merge 3.4 (test_subprocess)

This commit is contained in:
Victor Stinner 2015-03-05 02:40:17 +01:00
commit 3737e600f4
1 changed files with 9 additions and 6 deletions

View File

@ -2504,13 +2504,16 @@ class ContextManagerTests(BaseTestCase):
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)
args = [sys.executable, "-c",
"import sys;"
"sys.stdin.close();"
"sys.stdout.close();"] # Signals that input pipe is closed
proc = subprocess.Popen(args,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
bufsize=support.PIPE_MAX_SIZE*2)
proc.stdout.read() # Make sure subprocess has closed its input
proc.stdin.write(b"buffered data")
proc.stdin.write(b"x" * support.PIPE_MAX_SIZE)
self.assertIsNone(proc.returncode)
self.assertRaises(OSError, proc.__exit__, None, None, None)
self.assertEqual(0, proc.returncode)