This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: test_timeout should use "find_unused_port" helper
Type: behavior Stage: resolved
Components: Tests Versions: Python 3.1, Python 3.2, Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: ezio.melotti, flox, pitrou, r.david.murray
Priority: normal Keywords: buildbot, easy, patch

Created on 2010-01-17 21:27 by flox, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
issue7728_timeout.diff flox, 2010-02-05 00:56 Patch, apply to trunk
Messages (5)
msg97975 - (view) Author: Florent Xicluna (flox) * (Python committer) Date: 2010-01-17 21:27
Some buildbot failure because of hard-coded port.

test_timeout
test test_timeout failed -- Traceback (most recent call last):
  File "/home/buildbot/cpython-ucs2/trunk.pitrou-ubuntu/build/Lib/test/test_timeout.py", line 149, in testAcceptTimeout
    self.sock.bind(self.addr_local)
  File "/home/buildbot/cpython-ucs2/trunk.pitrou-ubuntu/build/Lib/socket.py", line 222, in meth
    return getattr(self._sock,name)(*args)
error: [Errno 98] Address already in use
msg98814 - (view) Author: Florent Xicluna (flox) * (Python committer) Date: 2010-02-04 07:27
http://www.python.org/dev/buildbot/all/builders/AMD64%20Ubuntu%20trunk/builds/387
msg98839 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2010-02-04 16:44
Can you provide a patch?
msg98861 - (view) Author: Florent Xicluna (flox) * (Python committer) Date: 2010-02-05 00:56
Patch.
msg98937 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2010-02-06 05:11
Thanks.  Committed in r78014, r78015, r78016, and r78017.
History
Date User Action Args
2022-04-11 14:56:56adminsetgithub: 51977
2010-02-06 05:11:41r.david.murraysetstatus: open -> closed

nosy: + r.david.murray
messages: + msg98937

resolution: fixed
stage: patch review -> resolved
2010-02-05 00:56:55floxsetfiles: + issue7728_timeout.diff
keywords: + patch
messages: + msg98861

stage: needs patch -> patch review
2010-02-04 16:44:01pitrousetkeywords: + easy
type: behavior
messages: + msg98839
2010-02-04 07:27:20floxsetmessages: + msg98814
2010-01-26 01:08:10ezio.melottisetpriority: normal
nosy: + ezio.melotti
2010-01-17 21:27:37floxcreate