summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_subprocess.py
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2013-12-01 08:12:24 (GMT)
committerGregory P. Smith <greg@krypto.org>2013-12-01 08:12:24 (GMT)
commit361e30c17a7973874334597903afb3ba5a477f49 (patch)
treea1b01b9f99a3705ae3d949fb683c234c62f317cc /Lib/test/test_subprocess.py
parent1eda9e7c3074bfe37674c8140b3d02bf94caf4f3 (diff)
downloadcpython-361e30c17a7973874334597903afb3ba5a477f49.zip
cpython-361e30c17a7973874334597903afb3ba5a477f49.tar.gz
cpython-361e30c17a7973874334597903afb3ba5a477f49.tar.bz2
Undo supposed fix for Issue #15798 until I understand why this is
causing test_multiprocessing_forkserver and test_multiprocessing_spawn failures on head (3.4).
Diffstat (limited to 'Lib/test/test_subprocess.py')
-rw-r--r--Lib/test/test_subprocess.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
index f5a70a3..77f1ba3 100644
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -1559,27 +1559,6 @@ class POSIXProcessTestCase(BaseTestCase):
# all standard fds closed.
self.check_close_std_fds([0, 1, 2])
- def test_small_errpipe_write_fd(self):
- """Issue #15798: Popen should work when stdio fds are available."""
- new_stdin = os.dup(0)
- new_stdout = os.dup(1)
- try:
- os.close(0)
- os.close(1)
-
- # Side test: if errpipe_write fails to have its CLOEXEC
- # flag set this should cause the parent to think the exec
- # failed. Extremely unlikely: everyone supports CLOEXEC.
- subprocess.Popen([
- sys.executable, "-c",
- "print('AssertionError:0:CLOEXEC failure.')"]).wait()
- finally:
- # Restore original stdin and stdout
- os.dup2(new_stdin, 0)
- os.dup2(new_stdout, 1)
- os.close(new_stdin)
- os.close(new_stdout)
-
def test_remapping_std_fds(self):
# open up some temporary files
temps = [mkstemp() for i in range(3)]