(self)
| 4161 | @unittest.skipIf(AIX, "skipping, see issue #22397") |
| 4162 | @requireAttrs(socket, "CMSG_SPACE") |
| 4163 | def testFDPassSeparate(self): |
| 4164 | # Pass two FDs in two separate arrays. Arrays may be combined |
| 4165 | # into a single control message by the OS. |
| 4166 | self.checkRecvmsgFDs(2, |
| 4167 | self.doRecvmsg(self.serv_sock, len(MSG), 10240), |
| 4168 | maxcmsgs=2) |
| 4169 | |
| 4170 | @testFDPassSeparate.client_skip |
| 4171 | @unittest.skipIf(is_apple, "skipping, see issue #12958") |
nothing calls this directly
no test coverage detected