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: python2.7 -m test -R 3:3 hangs on Refleaks 2.7 buildbots
Type: Stage: resolved
Components: Tests Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: vstinner, zach.ware
Priority: normal Keywords:

Created on 2017-06-19 16:11 by vstinner, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 2439 merged vstinner, 2017-06-27 12:39
Messages (4)
msg296353 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-06-19 16:11
The Refleaks 2.7 job hangs on "AMD64 Windows8.1 Refleaks 2.7" and "x86 Gentoo Refleaks 2.7" buildbots.


(1) Gentoo

http://buildbot.python.org/all/builders/x86%20Gentoo%20Refleaks%202.7/builds/21

StartSat Jun 3 00:00:00 2017
Elapsed328 hrs, 17 mins, 37 secs

http://buildbot.python.org/all/builders/x86%20Gentoo%20Refleaks%202.7/builds/21/steps/test/logs/stdio
...
running: test_io (1177378 sec)
running: test_io (1177408 sec)
running: test_io (1177438 sec)
running: test_io (1177468 sec)


(2) Windows

http://buildbot.python.org/all/builders/AMD64%20Windows8.1%20Refleaks%202.7/builds/27

Elasped: 88 hrs, 11 mins, 5 secs

http://buildbot.python.org/all/builders/AMD64%20Windows8.1%20Refleaks%202.7/builds/27/steps/test/logs/stdio

...
running: test_regrtest (304919 sec)
running: test_regrtest (304949 sec)
running: test_regrtest (304979 sec)
running: test_regrtest (305009 sec)
running: test_regrtest (305039 sec)
running: test_regrtest (305069 sec)
msg296979 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-06-27 00:12
Oh, for test_regrtest which hangs on Windows, I'm quite sure that it comes from test_crashed() which opens a popup!

In the master branch, test_crashed() uses faulthandler._sigsegv() which disables the Windows popup using SetErrorMode() and _set_abort_behavior().

In Python 2.7, test_crashed() just calls ctypes.string_at(0) which doesn't prevent the Windows popup.

My PR https://github.com/python/cpython/pull/2423 implements support.SuppressCrashReport on Windows and so will allow to fix this issue!
msg297032 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-06-27 13:37
New changeset 2d775589d98959abb9833121bd9d417003de56c0 by Victor Stinner in branch '2.7':
bpo-30705: Fix test_regrtest.test_crashed() (#2439)
https://github.com/python/cpython/commit/2d775589d98959abb9833121bd9d417003de56c0
msg297033 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-06-27 13:45
It seems like "x86 Gentoo Refleaks 2.7" was fixed, I don't know how, but I don't care as soon as it works :-)

My commit 2d775589d98959abb9833121bd9d417003de56c0 fixed "./python -m test -R 3:3 test_regrtest" on Windows. I tested manually.

I consider that the bugs are now fixed. (If the bug is not really fixed, I will just reopen the bug.)
History
Date User Action Args
2022-04-11 14:58:47adminsetgithub: 74890
2017-06-27 13:45:50vstinnersetstatus: open -> closed
resolution: fixed
messages: + msg297033

stage: resolved
2017-06-27 13:37:21vstinnersetmessages: + msg297032
2017-06-27 12:39:01vstinnersetpull_requests: + pull_request2488
2017-06-27 00:12:11vstinnersetmessages: + msg296979
2017-06-19 16:11:26vstinnercreate