Message356235
| Author |
yan12125 |
| Recipients |
aeros, asvetlov, benjamin.peterson, nanjekyejoannah, njs, vstinner, yan12125, yselivanov |
| Date |
2019-11-08.10:12:35 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1573207956.08.0.747650911304.issue38692@roundup.psfhosted.org> |
| In-reply-to |
|
| Content |
I got a failure in newly added test_pidfd_open:
======================================================================
FAIL: test_pidfd_open (test.test_posix.PosixTester)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/python-git/src/cpython/Lib/test/test_posix.py", line 1479, in test_pidfd_open
self.assertEqual(cm.exception.errno, errno.EINVAL)
AssertionError: 1 != 22
----------------------------------------------------------------------
I'm running kernel 5.3.7-x86_64-linode130 with Arch Linux. At first I suspect that it's related to system call filters from systemd as tests are run in a systemd-nspawn container. However, there are still failures after patching systemd with https://github.com/systemd/systemd/commit/9e486265716963439fb0fd7f2a97abf109f24f75.
How about also skipping the test if pidfd_open returns EPERM? |
|