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: FAIL: test_wait_for_handle (test.test_asyncio.test_windows_events.ProactorTests) on x86 Windows7 3.x
Type: Stage: resolved
Components: asyncio, Tests, Windows Versions: Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: paul.moore, steve.dower, tim.golden, vstinner, yselivanov, zach.ware
Priority: normal Keywords: buildbot

Created on 2017-07-24 09:11 by vstinner, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 3065 merged vstinner, 2017-08-10 15:41
PR 3068 merged vstinner, 2017-08-10 23:23
Messages (4)
msg298939 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-07-24 09:11
http://buildbot.python.org/all/builders/x86%20Windows7%203.x/builds/905/steps/test/logs/stdio

...
test_double_bind (test.test_asyncio.test_windows_events.ProactorTests) ... ok
test_pipe (test.test_asyncio.test_windows_events.ProactorTests) ... ok
test_wait_for_handle (test.test_asyncio.test_windows_events.ProactorTests) ... FAIL
test_wait_for_handle_cancel (test.test_asyncio.test_windows_events.ProactorTests) ... ok
test_pipe_handle (test.test_asyncio.test_windows_utils.PipeTests) ... ok
...
======================================================================
FAIL: test_wait_for_handle (test.test_asyncio.test_windows_events.ProactorTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\cygwin\home\db3l\buildarea\3.x.bolen-windows7\build\lib\test\test_asyncio\test_windows_events.py", line 121, in test_wait_for_handle
    self.assertTrue(0.48 < elapsed < 0.9, elapsed)
AssertionError: False is not true : 0.4599999999627471
msg300127 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-08-10 23:23
New changeset 5659a72f487579be76335c09c8ba8b2f1800adde by Victor Stinner in branch 'master':
bpo-31008: Fix asyncio test_wait_for_handle on Windows (#3065)
https://github.com/python/cpython/commit/5659a72f487579be76335c09c8ba8b2f1800adde
msg300132 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-08-10 23:52
New changeset 270c3c62edd81c14fcdb6a24b4b518a777ec6534 by Victor Stinner in branch '3.6':
bpo-31008: Fix asyncio test_wait_for_handle on Windows (#3065) (#3068)
https://github.com/python/cpython/commit/270c3c62edd81c14fcdb6a24b4b518a777ec6534
msg302272 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-09-15 16:39
I didn't see the failure recently, it seems like my fix was enough.
History
Date User Action Args
2022-04-11 14:58:49adminsetgithub: 75191
2017-09-15 16:39:27vstinnersetstatus: open -> closed
resolution: fixed
messages: + msg302272

stage: resolved
2017-08-10 23:52:15vstinnersetmessages: + msg300132
2017-08-10 23:23:57vstinnersetpull_requests: + pull_request3105
2017-08-10 23:23:24vstinnersetmessages: + msg300127
2017-08-10 15:41:54vstinnersetpull_requests: + pull_request3102
2017-07-24 09:11:45vstinnercreate