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: test_kqueue fails in OpenBSD
Type: behavior Stage: resolved
Components: Tests Versions: Python 3.3, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Federico.Schwindt, neologix, python-dev
Priority: normal Keywords:

Created on 2013-06-28 20:50 by Federico.Schwindt, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (4)
msg192018 - (view) Author: Federico Schwindt (Federico.Schwindt) Date: 2013-06-28 20:50
test_kqueue fails in OpenBSD/amd64 -current:

Traceback (most recent call last):
  File "/usr/obj/pobj/Python-3.3.2/Python-3.Lib/test/test_kqueue.py", line 79, in test_create_event
    ev = select.kevent(bignum, 1, 2, 3, sys.maxsize, bignum)
OverflowError: signed integer is greater than maximum

In OpenBSD, ident is an unsigned integer data is a signed integer.
See http://bugs.python.org/issue12181 for details.
msg194161 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-08-02 08:02
New changeset 8205e72b5cfc by Charles-François Natali in branch '2.7':
Issue #18325: Fix a test_kqueue failure on OpenBSD: kevent's data and event
http://hg.python.org/cpython/rev/8205e72b5cfc
msg194162 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-08-02 08:22
New changeset 78db41e4c6a9 by Charles-François Natali in branch '3.3':
Issue #18325: Fix a test_kqueue failure on OpenBSD: kevent's data and event
http://hg.python.org/cpython/rev/78db41e4c6a9

New changeset 1287d4c9cd39 by Charles-François Natali in branch 'default':
Issue #18325: Fix a test_kqueue failure on OpenBSD: kevent's data and event
http://hg.python.org/cpython/rev/1287d4c9cd39
msg194169 - (view) Author: Charles-François Natali (neologix) * (Python committer) Date: 2013-08-02 09:20
Should be fixed now.
Thanks for the report, and sorry for the delay!
History
Date User Action Args
2022-04-11 14:57:47adminsetgithub: 62525
2013-08-02 09:20:45neologixsetstatus: open -> closed
resolution: fixed
messages: + msg194169

stage: resolved
2013-08-02 08:22:55python-devsetmessages: + msg194162
2013-08-02 08:02:27python-devsetnosy: + python-dev
messages: + msg194161
2013-06-28 20:50:44Federico.Schwindtsettype: behavior
2013-06-28 20:50:16Federico.Schwindtcreate