|
From: Stefan R. <re...@bu...> - 2017-03-06 21:03:24
|
New submission from Stefan Richthofer:
Running test_socket_jy I get
test_connect_ex_workout (__main__.SocketConnectTest)
Verify connect_ex states go through EINPROGRESS?, EALREADY*, EISCONN ... ok
test_connect_ex_workout (__main__.SSLSocketConnectTest)
Verify connect_ex states go through EINPROGRESS?, EALREADY*, EISCONN ... FAIL
test_socket_options_defined (__main__.SocketOptionsTest) ... ok
======================================================================
FAIL: test_connect_ex_workout (__main__.SSLSocketConnectTest)
Verify connect_ex states go through EINPROGRESS?, EALREADY*, EISCONN
----------------------------------------------------------------------
Traceback (most recent call last):
File "Lib/test/test_socket_jy.py", line 140, in test_connect_ex_workout
self.assertEqual(result[-1], errno.EISCONN)
AssertionError: 115 != 106
----------------------------------------------------------------------
Ran 3 tests in 10.703s
FAILED (failures=1)
After calling
hg update -r 8047
it passes again. So we somehow broke it with that commit.
Something strange: I vaguely remember that directly after that update, after running regrtestes for commit 8048 test_socket_jy was still passing. Any clue?
----------
messages: 11189
nosy: stefan.richthofer
priority: normal
severity: normal
status: open
title: test_socket_jy fails on Linux
type: behaviour
versions: Jython 2.7
_______________________________________
Jython tracker <re...@bu...>
<http://bugs.jython.org/issue2564>
_______________________________________
|