diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-12-05 12:41:41 +0000 |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-12-05 12:41:41 +0000 |
commit | 1a173de212a0009d2ccbb875076ba49bdb0d23aa (patch) | |
tree | 5d18d9ff8f0a45da72205de887140ebd6386bcdd | |
parent | 4be79aab2d6e390f39caa50e12ec1eb625e4bfbf (diff) | |
parent | c4b8979a2f6f78ba0bf835c3b8ba8ec671659204 (diff) | |
download | cpython-git-1a173de212a0009d2ccbb875076ba49bdb0d23aa.tar.gz |
Issue #25764: Merge OS X test skipping from 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 ed1b213fad..81c2672c59 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 |