diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-12-05 12:41:29 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-12-05 12:41:29 (GMT) |
commit | c4b8979a2f6f78ba0bf835c3b8ba8ec671659204 (patch) | |
tree | 1bdbb0fd8311b439fc5a8cde80059f67cd3fb97f | |
parent | 8fc7d296a2735202720f935770fea772c3a0ba3e (diff) | |
parent | f7fdbdab5b0e49aed23095ae04431a6484543963 (diff) | |
download | cpython-c4b8979a2f6f78ba0bf835c3b8ba8ec671659204.zip cpython-c4b8979a2f6f78ba0bf835c3b8ba8ec671659204.tar.gz cpython-c4b8979a2f6f78ba0bf835c3b8ba8ec671659204.tar.bz2 |
Issue #25764: Merge OS X test skipping from 3.4 into 3.5
-rw-r--r-- | 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 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 |