mirror of https://github.com/python/cpython
Merged revisions 85931 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85931 | antoine.pitrou | 2010-10-29 20:15:33 +0200 (ven., 29 oct. 2010) | 5 lines Issue #7547: fix transient failures due to network glitches in test_timeout. Patch by Sandro Tosi. ........
This commit is contained in:
parent
c6f4024e03
commit
e0e34bbb64
|
@ -130,11 +130,13 @@ class TimeoutTestCase(unittest.TestCase):
|
||||||
def testRecvTimeout(self):
|
def testRecvTimeout(self):
|
||||||
# Test recv() timeout
|
# Test recv() timeout
|
||||||
_timeout = 0.02
|
_timeout = 0.02
|
||||||
|
|
||||||
|
with support.transient_internet(self.addr_remote[0]):
|
||||||
self.sock.connect(self.addr_remote)
|
self.sock.connect(self.addr_remote)
|
||||||
self.sock.settimeout(_timeout)
|
self.sock.settimeout(_timeout)
|
||||||
|
|
||||||
_t1 = time.time()
|
_t1 = time.time()
|
||||||
self.assertRaises(socket.error, self.sock.recv, 1024)
|
self.assertRaises(socket.timeout, self.sock.recv, 1024)
|
||||||
_t2 = time.time()
|
_t2 = time.time()
|
||||||
|
|
||||||
_delta = abs(_t1 - _t2)
|
_delta = abs(_t1 - _t2)
|
||||||
|
|
Loading…
Reference in New Issue