summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_subprocess.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-12-05 12:41:29 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-12-05 12:41:29 (GMT)
commitc4b8979a2f6f78ba0bf835c3b8ba8ec671659204 (patch)
tree1bdbb0fd8311b439fc5a8cde80059f67cd3fb97f /Lib/test/test_subprocess.py
parent8fc7d296a2735202720f935770fea772c3a0ba3e (diff)
parentf7fdbdab5b0e49aed23095ae04431a6484543963 (diff)
downloadcpython-c4b8979a2f6f78ba0bf835c3b8ba8ec671659204.zip
cpython-c4b8979a2f6f78ba0bf835c3b8ba8ec671659204.tar.gz
cpython-c4b8979a2f6f78ba0bf835c3b8ba8ec671659204.tar.bz2
Issue #25764: Merge OS X test skipping from 3.4 into 3.5
Diffstat (limited to 'Lib/test/test_subprocess.py')
-rw-r--r--Lib/test/test_subprocess.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
index 0448d64..b32ef97 100644
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -1512,6 +1512,8 @@ class POSIXProcessTestCase(BaseTestCase):
if not enabled:
gc.disable()
+ @unittest.skipIf(
+ sys.platform == 'darwin', 'setrlimit() seems to fail on OS X')
def test_preexec_fork_failure(self):
# The internal code did not preserve the previous exception when
# re-enabling garbage collection