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 vstinner
Recipients asvetlov, mcepl, ned.deily, vstinner, yselivanov
Date 2020-06-19.14:55:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1592578519.45.0.874109032081.issue38377@roundup.psfhosted.org>
In-reply-to
Content
From what I understood, the problem is that creating a SemLock has an impact on the resource tracker.

The failing unit tests checks something about the resource tracker.

The test runs a function in a child process. The function is defined in _test_multiprocessing.py. _test_multiprocessing.py calls skip_if_broken_multiprocessing_synchronize() which creates a SemLock(). At the end, the child process modifies the resource tracker because it creates a SemLock().

There are different options to fix the issue:

* Modify skip_if_broken_multiprocessing_synchronize() only only attempt to create a SemLock on Linux.
* Modify skip_if_broken_multiprocessing_synchronize() to only check if the current user is allowed to write into /dev/shm/ directory: that would allow touching the resource tracker.
* Modify the test to avoid improting _test_multiprocessing in the child process.

I don't know why the test only fails on macOS.

Note: I ignored macOS failure when I merged my PR because the macOS job of GitHub Action is failing randomly for at least 3 months and nobody attempted to fix it. So I learnt to ignore this job.
History
Date User Action Args
2020-06-19 14:55:19vstinnersetrecipients: + vstinner, ned.deily, mcepl, asvetlov, yselivanov
2020-06-19 14:55:19vstinnersetmessageid: <1592578519.45.0.874109032081.issue38377@roundup.psfhosted.org>
2020-06-19 14:55:19vstinnerlinkissue38377 messages
2020-06-19 14:55:19vstinnercreate