[issue26815] SIGBUS in test_ssl.test_dealloc_warn() on "AMD64 FreeBSD 10.0 3.x" buildbot

STINNER Victor report at bugs.python.org
Thu Apr 21 05:51:35 EDT 2016


STINNER Victor added the comment:

The test:

    def test_dealloc_warn(self):
        ss = ssl.wrap_socket(socket.socket(socket.AF_INET))
        r = repr(ss)
        with self.assertWarns(ResourceWarning) as cm:
            ss = None
            support.gc_collect()   <~~~~~ SIGBUG occurred here
        self.assertIn(r, str(cm.warning.args[0]))

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue26815>
_______________________________________


More information about the Python-bugs-list mailing list