[Python-checkins] cpython (merge 3.4 -> 3.5): Issue #25764: Merge OS X test skipping from 3.4 into 3.5

martin.panter python-checkins at python.org
Sat Dec 5 07:43:06 EST 2015


https://hg.python.org/cpython/rev/6211c41106cc
changeset:   99462:6211c41106cc
branch:      3.5
parent:      99458:ec2aa1d6d955
parent:      99461:6f831de45f43
user:        Martin Panter <vadmium+py at gmail.com>
date:        Sat Dec 05 12:41:29 2015 +0000
summary:
  Issue #25764: Merge OS X test skipping from 3.4 into 3.5

files:
  Lib/test/test_subprocess.py |  2 ++
  1 files changed, 2 insertions(+), 0 deletions(-)


diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -1512,6 +1512,8 @@
             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

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list