summaryrefslogtreecommitdiff
path: root/Lib/test/test_subprocess.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-03-05 02:38:41 +0100
committerVictor Stinner <victor.stinner@gmail.com>2015-03-05 02:38:41 +0100
commite7b6ccb1e565c9832cc80c46091c7944e5636515 (patch)
tree8fc44a7f82a7f6b1d7cdba9ab49a6b1f22fdcc8a /Lib/test/test_subprocess.py
parentc39f7c24ffa8fdc5f920169d023587ea780b65ff (diff)
downloadcpython-e7b6ccb1e565c9832cc80c46091c7944e5636515.tar.gz
Issue #21619: Try to fix test_broken_pipe_cleanup()
Diffstat (limited to 'Lib/test/test_subprocess.py')
-rw-r--r--Lib/test/test_subprocess.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
index fc98da5015..aaec3229f8 100644
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -2523,13 +2523,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)