[Python-checkins] cpython: Issue #25764: OS X now failing on the second setrlimit() call

martin.panter python-checkins at python.org
Sat Dec 5 00:48:03 EST 2015


https://hg.python.org/cpython/rev/ccf42cdffc6d
changeset:   99445:ccf42cdffc6d
user:        Martin Panter <vadmium+py at gmail.com>
date:        Sat Dec 05 05:42:18 2015 +0000
summary:
  Issue #25764: OS X now failing on the second setrlimit() call

files:
  Lib/test/test_subprocess.py |  13 ++++++++-----
  1 files changed, 8 insertions(+), 5 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
@@ -1520,14 +1520,17 @@
         except ImportError as err:
             self.skipTest(err)  # RLIMIT_NPROC is specific to Linux and BSD
         limits = getrlimit(RLIMIT_NPROC)
+        [_, hard] = limits
         try:
             setrlimit(RLIMIT_NPROC, limits)
+            setrlimit(RLIMIT_NPROC, (0, hard))
         except ValueError as err:
-            # Seems to happen on AMD64 Snow Leop and x86-64 Yosemite buildbots
-            print(f"Setting NPROC to {limits!r}: {err!r}, RLIM_INFINITY={RLIM_INFINITY!r}")
-            self.skipTest("Setting existing NPROC limit failed")
-        [_, hard] = limits
-        setrlimit(RLIMIT_NPROC, (0, hard))
+            # Seems to happen on various OS X buildbots
+            print(
+                f"Setting NPROC failed: {err!r}, limits={limits!r}, "
+                f"RLIM_INFINITY={RLIM_INFINITY!r}, "
+                f"getrlimit() -> {getrlimit(RLIMIT_NPROC)!r}")
+            self.skipTest("Setting NPROC limit failed")
         self.addCleanup(setrlimit, RLIMIT_NPROC, limits)
         # Forking should raise EAGAIN, translated to BlockingIOError
         with self.assertRaises(BlockingIOError):

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


More information about the Python-checkins mailing list