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.

Author neologix
Recipients gregory.p.smith, neologix, pitrou, python-dev, r.david.murray, rosslagerwall, vstinner
Date 2011-05-29.18:52:59
SpamBayes Score 5.2254403e-08
Marked as misclassified No
Message-id <1306695180.87.0.816522980689.issue12196@psf.upfronthosting.co.za>
In-reply-to
Content
The Gentoo buildbot on which O_CLOEXEC test failed also chokes on test_pipe2:

[ 10/355] test_posix
test test_posix failed -- Traceback (most recent call last):
  File "/var/lib/buildslave/3.x.murray-gentoo-wide/build/Lib/test/test_posix.py", line 487, in test_pipe2
    r, w = os.pipe2()
OSError: [Errno 38] Function not implemented

If've added a test to skip this test on Linux kernels older than 2.6.27: like O_CLOEXEC, the problem is that the libc defines pipe2() while the kernel doesn't support it, so when syscall() is called it bails out with ENOSYS.
(This buildbot should really have its libc/kernel upgraded...)
History
Date User Action Args
2011-05-29 18:53:00neologixsetrecipients: + neologix, gregory.p.smith, pitrou, vstinner, r.david.murray, rosslagerwall, python-dev
2011-05-29 18:53:00neologixsetmessageid: <1306695180.87.0.816522980689.issue12196@psf.upfronthosting.co.za>
2011-05-29 18:53:00neologixlinkissue12196 messages
2011-05-29 18:52:59neologixcreate