[issue13453] Tests and network timeouts

2013-01-02 Thread STINNER Victor
STINNER Victor added the comment: Various fixes were done thanks to this issue. I close it. Open a new issue if you see again similar issues. -- resolution: -> fixed status: open -> closed ___ Python tracker

[issue13453] Tests and network timeouts

2011-12-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2228d985fdcc by Charles-François Natali in branch '2.7': Issue #13453: Try to increase some socket timeouts to make some buildbots stop http://hg.python.org/cpython/rev/2228d985fdcc New changeset d7daf98c068e by Charles-François Natali in branch '3

[issue13453] Tests and network timeouts

2011-12-19 Thread Antoine Pitrou
Antoine Pitrou added the comment: Jesus is the OpenIndiana buildbots' administrator. -- nosy: +jcea ___ Python tracker ___ ___ Python

[issue13453] Tests and network timeouts

2011-12-19 Thread Antoine Pitrou
Antoine Pitrou added the comment: > File "/var/lib/buildslave/3.x.murray-gentoo/build/Lib/socket.py", line 275, > in readinto > raise IOError("cannot read from timed out object") > OSError: cannot read from timed out object Ah, annoying. The NNTP tests use a single connection, and when a

[issue13453] Tests and network timeouts

2011-12-19 Thread Charles-François Natali
Charles-François Natali added the comment: Another failure on an OpenIndiana buildbot: """ == ERROR: testTimeoutConnect (test.test_ftplib.TestTimeouts) -- Trace

[issue13453] Tests and network timeouts

2011-12-17 Thread STINNER Victor
STINNER Victor added the comment: http://www.python.org/dev/buildbot/all/builders/x86%20Gentoo%203.x/builds/1327/steps/test/logs/stdio == ERROR: test_list_active (test.test_nntplib.NetworkedNNTPTests) --

[issue13453] Tests and network timeouts

2011-12-14 Thread Roundup Robot
Roundup Robot added the comment: New changeset fbcaeb4a8654 by Charles-François Natali in branch '2.7': Issue #13453: Fix a race condition in test_poplib. http://hg.python.org/cpython/rev/fbcaeb4a8654 New changeset e497a3ed9beb by Charles-François Natali in branch '3.2': Issue #13453: Fix a rac

[issue13453] Tests and network timeouts

2011-12-10 Thread Charles-François Natali
Charles-François Natali added the comment: And I assume that the test_telnetlib failure on the OpenIndiana buildbot is due to a broken name resolution service, as in issue #11812. Here's a patch bumping the timeout to 60s, which should be enough to resolve "localhost"... -- Added file:

[issue13453] Tests and network timeouts

2011-12-10 Thread Charles-François Natali
Charles-François Natali added the comment: The test_poplib failures are likely due to this obvious race: """ def setUp(self): [...] threading.Thread(target=self.server, args=(self.evt,self.sock)).start() time.sleep(.1) [...] def server(self, evt, serv): serv.lis

[issue13453] Tests and network timeouts

2011-12-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5ba1a22c8988 by Charles-François Natali in branch '2.7': Issue #13453: Catch EAI_FAIL in support.transient_internet. http://hg.python.org/cpython/rev/5ba1a22c8988 New changeset c998c6f5464b by Charles-François Natali in branch '3.2': Issue #13453:

[issue13453] Tests and network timeouts

2011-12-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: Wow, the error description ("Non-recoverable failure in name resolution") is as useful as a Windows error message. Ok for the patch. -- ___ Python tracker ___

[issue13453] Tests and network timeouts

2011-12-10 Thread Charles-François Natali
Changes by Charles-François Natali : -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue13453] Tests and network timeouts

2011-12-07 Thread Charles-François Natali
Charles-François Natali added the comment: > URLError: resolution> For this one, we should probably add EAI_FAIL to support.transient_internet. -- keywords: +patch nosy: +neologix Added file: http://bugs.python.org/file23867/transient.diff ___ Pyth

[issue13453] Tests and network timeouts

2011-11-22 Thread STINNER Victor
STINNER Victor added the comment: http://www.python.org/dev/buildbot/all/builders/AMD64%20OpenIndiana%202.7/builds/732/steps/test/logs/stdio test test_telnetlib failed -- Traceback (most recent call last): File "/export/home/buildbot/64bits/2.7.cea-indiana-amd64/build/Lib/test/test_telnetlib

[issue13453] Tests and network timeouts

2011-11-22 Thread STINNER Victor
STINNER Victor added the comment: http://www.python.org/dev/buildbot/all/builders/x86%20OpenIndiana%203.x/builds/2435/steps/test/logs/stdio Re-running test 'test_poplib' in verbose mode test_apop (test.test_poplib.TestPOP3Class) ... ok test_dele (test.test_poplib.TestPOP3Class) ... ok test_exce

[issue13453] Tests and network timeouts

2011-11-22 Thread STINNER Victor
STINNER Victor added the comment: http://www.python.org/dev/buildbot/all/builders/AMD64%20FreeBSD%208.2%202.7/builds/405/steps/test/logs/stdio -- ___ Python tracker ___

[issue13453] Tests and network timeouts

2011-11-22 Thread STINNER Victor
STINNER Victor added the comment: test_urllib2net test test_urllib2net failed -- Traceback (most recent call last): File "/usr/home/buildbot/buildarea/2.7.krah-freebsd/build/Lib/test/test_urllib2net.py", line 195, in test_sites_no_connection_close req = urllib2.urlopen(URL) File "/usr/

[issue13453] Tests and network timeouts

2011-11-22 Thread Nadeem Vawda
Changes by Nadeem Vawda : -- nosy: +nadeem.vawda ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue13453] Tests and network timeouts

2011-11-22 Thread STINNER Victor
New submission from STINNER Victor : A lot of tests using the network are failing sometimes. They look like timeout or network failure. Example: == ERROR: test_storlines (test.test_ftplib.TestTLS_FTPClassMixin) ---