msg117561 - (view) |
Author: Antoine Pitrou (pitrou) *  |
Date: 2010-09-28 23:13 |
This has started showing up since r85073. ====================================================================== ERROR: test_CTRL_BREAK_EVENT (test.test_os.Win32KillTests) ---------------------------------------------------------------------- Traceback (most recent call last): File "D:\cygwin\home\db3l\buildarea\3.x.bolen-windows\build\lib\test\test_os.py", line 1068, in test_CTRL_BREAK_EVENT self._kill_with_event(signal.CTRL_BREAK_EVENT, "CTRL_BREAK_EVENT") File "D:\cygwin\home\db3l\buildarea\3.x.bolen-windows\build\lib\test\test_os.py", line 1039, in _kill_with_event os.kill(proc.pid, event) WindowsError: [Error 5] Access is denied http://www.python.org/dev/buildbot/builders/x86%20XP-4%203.x |
|
|
msg117590 - (view) |
Author: Hirokazu Yamamoto (ocean-city) *  |
Date: 2010-09-29 10:21 |
I cannot reproduce this in my environment... E:\python-dev\py3k>py3k -m test.regrtest test_os [1/1] test_os [33503 refs] 1 test OK. [85140 refs] |
|
|
msg117615 - (view) |
Author: Hirokazu Yamamoto (ocean-city) *  |
Date: 2010-09-29 14:57 |
I created the patch to fix this issue. WINFUNCTYPE is not member of ctypes.wintypes, but ctypes. |
|
|
msg117616 - (view) |
Author: Brian Curtin (brian.curtin) *  |
Date: 2010-09-29 14:59 |
I just checked in the importing changes to r85109 and r85110 (I saw your branch checkins happening at the same time, sorry). |
|
|
msg117617 - (view) |
Author: Brian Curtin (brian.curtin) *  |
Date: 2010-09-29 15:03 |
Do you think we need the other parts of that patch? It seems like the only real issue here was the importing. |
|
|
msg117624 - (view) |
Author: Hirokazu Yamamoto (ocean-city) *  |
Date: 2010-09-29 15:48 |
Other parts are needed for my environment. If machine is really slow, there is possibility of subprocess being killed before execution reaches "wintypes.WINFUNCTYPE" line. |
|
|
msg118008 - (view) |
Author: Brian Curtin (brian.curtin) *  |
Date: 2010-10-05 13:23 |
In that case, the patch seems alright to me. |
|
|
msg118170 - (view) |
Author: Hirokazu Yamamoto (ocean-city) *  |
Date: 2010-10-08 09:47 |
Thank you. Committed in r85315(py3k), r85318(release27-maint). |
|
|
msg118171 - (view) |
Author: Hirokazu Yamamoto (ocean-city) *  |
Date: 2010-10-08 09:52 |
I modified the patch slightly to avoid potential hang. |
|
|