unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#35311: Python 2 test failures: test_httplib test_urllib2_localnet
@ 2019-04-18  1:49 Maxim Cournoyer
  2019-04-19  8:33 ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Maxim Cournoyer @ 2019-04-18  1:49 UTC (permalink / raw)
  To: 35311

Building 'python2' on the core-updates branch, I've seen these two test
failures (non-deterministic), although the first one comes up quite
steadily on my system:

--8<---------------cut here---------------start------------->8---
;; This buffer is for text that is not saved, and for Lisp evaluation.
;; To create a file, visit it with C-x C-f and enter text in its buffer.

test test_urllib2_localnet produced unexpected output:
**********************************************************************
----------------------------------------
Exception happened during processing of request from ('127.0.0.1', 35092)
----------------------------------------

**********************************************************************
Traceback (most recent call last):
  File "/tmp/guix-build-python2-2.7.16.drv-0/Python-2.7.16/Lib/SocketServer.py", linek
    self.process_request(request, client_address)
  File "/tmp/guix-build-python2-2.7.16.drv-0/Python-2.7.16/Lib/SocketServer.py", linet
    self.finish_request(request, client_address)
  File "/tmp/guix-build-python2-2.7.16.drv-0/Python-2.7.16/Lib/SocketServer.py", linet
    self.RequestHandlerClass(request, client_address, self)
  File "/tmp/guix-build-python2-2.7.16.drv-0/Python-2.7.16/Lib/SocketServer.py", line_
    self.handle()
  File "/tmp/guix-build-python2-2.7.16.drv-0/Python-2.7.16/Lib/BaseHTTPServer.py", lie
    self.handle_one_request()
  File "/tmp/guix-build-python2-2.7.16.drv-0/Python-2.7.16/Lib/BaseHTTPServer.py", lit
    self.raw_requestline = self.rfile.readline(65537)
  File "/tmp/guix-build-python2-2.7.16.drv-0/Python-2.7.16/Lib/socket.py", line 480, e
    data = self._sock.recv(self._rbufsize)
  File "/tmp/guix-build-python2-2.7.16.drv-0/Python-2.7.16/Lib/ssl.py", line 754, in v
    return self.read(buflen)
  File "/tmp/guix-build-python2-2.7.16.drv-0/Python-2.7.16/Lib/ssl.py", line 641, in d
    v = self._sslobj.read(len)
error: [Errno 104] Connection reset by peer

# This one is much harder to get:

test test_httplib produced unexpected output:
**********************************************************************
----------------------------------------
Exception happened during processing of request from ('127.0.0.1', 60648)
----------------------------------------

**********************************************************************
Traceback (most recent call last):
  File "/tmp/guix-build-python2-2.7.16.drv-0/Python-2.7.16/Lib/SocketServer.py", linek
    self.process_request(request, client_address)
  File "/tmp/guix-build-python2-2.7.16.drv-0/Python-2.7.16/Lib/SocketServer.py", linet
    self.finish_request(request, client_address)
  File "/tmp/guix-build-python2-2.7.16.drv-0/Python-2.7.16/Lib/SocketServer.py", linet
    self.RequestHandlerClass(request, client_address, self)
  File "/tmp/guix-build-python2-2.7.16.drv-0/Python-2.7.16/Lib/SocketServer.py", line_
    self.handle()
  File "/tmp/guix-build-python2-2.7.16.drv-0/Python-2.7.16/Lib/BaseHTTPServer.py", lie
    self.handle_one_request()
  File "/tmp/guix-build-python2-2.7.16.drv-0/Python-2.7.16/Lib/BaseHTTPServer.py", lit
    self.raw_requestline = self.rfile.readline(65537)
  File "/tmp/guix-build-python2-2.7.16.drv-0/Python-2.7.16/Lib/socket.py", line 480, e
    data = self._sock.recv(self._rbufsize)
  File "/tmp/guix-build-python2-2.7.16.drv-0/Python-2.7.16/Lib/ssl.py", line 754, in v
    return self.read(buflen)
  File "/tmp/guix-build-python2-2.7.16.drv-0/Python-2.7.16/Lib/ssl.py", line 641, in d
    v = self._sslobj.read(len)
error: [Errno 104] Connection reset by peer
--8<---------------cut here---------------end--------------->8---

It seems to be related to OpenSSL bump to 1.1.1b, although strangely
Python 3 seems unaffected.  It is potentially fixed by:
https://github.com/python/cpython/commit/529525fb5a8fd9b96ab4021311a598c77588b918,
but hasn't been backported to Python 2 as of 2019/04/17.

Maxim

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#35311: Python 2 test failures: test_httplib test_urllib2_localnet
  2019-04-18  1:49 bug#35311: Python 2 test failures: test_httplib test_urllib2_localnet Maxim Cournoyer
@ 2019-04-19  8:33 ` Ludovic Courtès
  2019-04-19 13:45   ` Maxim Cournoyer
  0 siblings, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2019-04-19  8:33 UTC (permalink / raw)
  To: Maxim Cournoyer; +Cc: 35311

Hi Maxim,

Maxim Cournoyer <maxim.cournoyer@gmail.com> skribis:

> Building 'python2' on the core-updates branch, I've seen these two test
> failures (non-deterministic), although the first one comes up quite
> steadily on my system:

I confirm that this has been preventing ‘core-updates’ evaluations from
happening for a while (apparently
circa dd7ce8643a28f5d633c5f3124de6be897cd5065f):

  https://berlin.guixsd.org/jobset/core-updates-core-updates

Ludo’.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#35311: Python 2 test failures: test_httplib test_urllib2_localnet
  2019-04-19  8:33 ` Ludovic Courtès
@ 2019-04-19 13:45   ` Maxim Cournoyer
  2019-04-19 14:54     ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Maxim Cournoyer @ 2019-04-19 13:45 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 35311-done

Ludovic Courtès <ludo@gnu.org> writes:

> Hi Maxim,
>
> Maxim Cournoyer <maxim.cournoyer@gmail.com> skribis:
>
>> Building 'python2' on the core-updates branch, I've seen these two test
>> failures (non-deterministic), although the first one comes up quite
>> steadily on my system:
>
> I confirm that this has been preventing ‘core-updates’ evaluations from
> happening for a while (apparently
> circa dd7ce8643a28f5d633c5f3124de6be897cd5065f):
>
>   https://berlin.guixsd.org/jobset/core-updates-core-updates
>
> Ludo’.

Hello, I pushed commit e337061b3a on core-updates, which fixes this.

Closing.

Maxim

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#35311: Python 2 test failures: test_httplib test_urllib2_localnet
  2019-04-19 13:45   ` Maxim Cournoyer
@ 2019-04-19 14:54     ` Ludovic Courtès
  0 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2019-04-19 14:54 UTC (permalink / raw)
  To: Maxim Cournoyer; +Cc: 35311-done

Maxim Cournoyer <maxim.cournoyer@gmail.com> skribis:

> Ludovic Courtès <ludo@gnu.org> writes:
>
>> Hi Maxim,
>>
>> Maxim Cournoyer <maxim.cournoyer@gmail.com> skribis:
>>
>>> Building 'python2' on the core-updates branch, I've seen these two test
>>> failures (non-deterministic), although the first one comes up quite
>>> steadily on my system:
>>
>> I confirm that this has been preventing ‘core-updates’ evaluations from
>> happening for a while (apparently
>> circa dd7ce8643a28f5d633c5f3124de6be897cd5065f):
>>
>>   https://berlin.guixsd.org/jobset/core-updates-core-updates
>>
>> Ludo’.
>
> Hello, I pushed commit e337061b3a on core-updates, which fixes this.

Awesome, thank you!

The build farm is busy building this right now.  :-)

Ludo’.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-04-19 14:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-18  1:49 bug#35311: Python 2 test failures: test_httplib test_urllib2_localnet Maxim Cournoyer
2019-04-19  8:33 ` Ludovic Courtès
2019-04-19 13:45   ` Maxim Cournoyer
2019-04-19 14:54     ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).