mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
parent
4c0a09a0c9
commit
43cbbe21a7
1 changed files with 4 additions and 0 deletions
|
|
@ -2741,6 +2741,7 @@ def _testFDPassCMSG_LEN(self):
|
|||
self.createAndSendFDs(1)
|
||||
|
||||
@unittest.skipIf(sys.platform == "darwin", "skipping, see issue #12958")
|
||||
@unittest.skipIf(sys.platform.startswith("aix"), "skipping, see issue #22397")
|
||||
@requireAttrs(socket, "CMSG_SPACE")
|
||||
def testFDPassSeparate(self):
|
||||
# Pass two FDs in two separate arrays. Arrays may be combined
|
||||
|
|
@ -2751,6 +2752,7 @@ def testFDPassSeparate(self):
|
|||
|
||||
@testFDPassSeparate.client_skip
|
||||
@unittest.skipIf(sys.platform == "darwin", "skipping, see issue #12958")
|
||||
@unittest.skipIf(sys.platform.startswith("aix"), "skipping, see issue #22397")
|
||||
def _testFDPassSeparate(self):
|
||||
fd0, fd1 = self.newFDs(2)
|
||||
self.assertEqual(
|
||||
|
|
@ -2763,6 +2765,7 @@ def _testFDPassSeparate(self):
|
|||
len(MSG))
|
||||
|
||||
@unittest.skipIf(sys.platform == "darwin", "skipping, see issue #12958")
|
||||
@unittest.skipIf(sys.platform.startswith("aix"), "skipping, see issue #22397")
|
||||
@requireAttrs(socket, "CMSG_SPACE")
|
||||
def testFDPassSeparateMinSpace(self):
|
||||
# Pass two FDs in two separate arrays, receiving them into the
|
||||
|
|
@ -2775,6 +2778,7 @@ def testFDPassSeparateMinSpace(self):
|
|||
|
||||
@testFDPassSeparateMinSpace.client_skip
|
||||
@unittest.skipIf(sys.platform == "darwin", "skipping, see issue #12958")
|
||||
@unittest.skipIf(sys.platform.startswith("aix"), "skipping, see issue #22397")
|
||||
def _testFDPassSeparateMinSpace(self):
|
||||
fd0, fd1 = self.newFDs(2)
|
||||
self.assertEqual(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue