Files
pkgsrc-ng/devel/py-Pyro/patches/patch-ab
2013-09-26 17:14:40 +02:00

18 lines
798 B
Plaintext

$NetBSD: patch-ab,v 1.1 2012/02/17 18:32:58 drochner Exp $
avoid sender block
--- tests/PyroTests/test_socket.py.orig 2011-11-05 16:22:00.000000000 +0000
+++ tests/PyroTests/test_socket.py
@@ -140,8 +140,10 @@ class TestSocketutil(unittest.TestCase):
def testMsgWaitallProblems(self):
ss=SU.createSocket(bind=("localhost",0), timeout=0.5)
+ ss.setsockopt(SU.socket.SOL_SOCKET, SU.socket.SO_SNDBUF, 100000)
port=ss.getsockname()[1]
cs=SU.createSocket(connect=("localhost",port), timeout=0.5)
+ cs.setsockopt(SU.socket.SOL_SOCKET, SU.socket.SO_SNDBUF, 100000)
a=ss.accept()
# test some sizes that might be problematic with MSG_WAITALL
for size in [1000,10000,32000,32768,32780,41950,41952,42000,65000,65535,65600,80000]: