Skip to content

Commit 710daaa

Browse files
add public wrapper for sendmsg re-entrant ancillary mutation test
1 parent 4703c2b commit 710daaa

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Lib/test/test_socket.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3572,8 +3572,12 @@ def _testSendmsgAfterClose(self):
35723572
class SendmsgStreamTests(SendmsgTests):
35733573
# Tests for sendmsg() which require a stream socket and do not
35743574
# involve recvmsg() or recvmsg_into().
3575+
35753576
@unittest.skipUnless(hasattr(socket.socket, "sendmsg"),
35763577
"sendmsg not supported")
3578+
def test_sendmsg_reentrant_ancillary_mutation(self):
3579+
self._test_sendmsg_reentrant_ancillary_mutation()
3580+
35773581
def _test_sendmsg_reentrant_ancillary_mutation(self):
35783582
import socket
35793583

0 commit comments

Comments
 (0)