Commit 83432bab authored by Antoine Pitrou's avatar Antoine Pitrou

Issue #7547: fix transient failures due to network glitches in test_timeout.

Patch by Sandro Tosi.
parent 3cdfb123
...@@ -130,11 +130,13 @@ class TimeoutTestCase(unittest.TestCase): ...@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment