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 Michael.Felt
Recipients Michael.Felt
Date 2019-01-01.18:09:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1546366148.3.0.0239151726659.issue35633@roundup.psfhosted.org>
In-reply-to
Content
test_eintr fails on AIX since fcntl functions were modified
In issue35189 the fnctl() module was modified so that the EINTR interruption should be retried automatically.

On AIX the test for flock() passes, but the test for lockf() fails:

 ======================================================================
> ERROR: test_lockf (__main__.FNTLEINTRTest)
> ----------------------------------------------------------------------
> Traceback (most recent call last):
>   File "/data/prj/python/git/python3-3.8/Lib/test/eintrdata/eintr_tester.py", line 522, in test_lockf
>     self._lock(fcntl.lockf, "lockf")
>   File "/data/prj/python/git/python3-3.8/Lib/test/eintrdata/eintr_tester.py", line 507, in _lock
>     lock_func(f, fcntl.LOCK_EX | fcntl.LOCK_NB)
> PermissionError: [Errno 13] Permission denied
>

Researching...
History
Date User Action Args
2019-01-01 18:09:12Michael.Feltsetrecipients: + Michael.Felt
2019-01-01 18:09:08Michael.Feltsetmessageid: <1546366148.3.0.0239151726659.issue35633@roundup.psfhosted.org>
2019-01-01 18:09:08Michael.Feltlinkissue35633 messages
2019-01-01 18:09:08Michael.Feltcreate