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 christian.heimes, pablogsal, steve.dower, vstinner
Date 2021-05-25.20:37:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1621975023.68.0.691587630287.issue43921@roundup.psfhosted.org>
In-reply-to
Content
> Looking at the output, I think the tests are just going to be inherently flakey. It's not testing the specific scenario directly enough, and relying heavily on implicit synchronization.

My notes to debug race conditions:
https://pythondev.readthedocs.io/unstable_tests.html#debug-race-conditions

In general, you should run the same test in a loop in many processes in parallel *and* stress the machine with a random workload.

My favorite recipe:

* Terminal 1: python -m test -F -j20 <... options for the test ...>
* Terminal 2: python -m test -j0 -r -F

Sadly, there is no silver bullet for -j20: sometimes, the machine must be "more idle" to trigger the bug (ex: -j5), sometimes the machine must almost die, be more stressed (-j100).

Happy hacking!
History
Date User Action Args
2021-05-25 20:37:03vstinnersetrecipients: + vstinner, christian.heimes, steve.dower, pablogsal
2021-05-25 20:37:03vstinnersetmessageid: <1621975023.68.0.691587630287.issue43921@roundup.psfhosted.org>
2021-05-25 20:37:03vstinnerlinkissue43921 messages
2021-05-25 20:37:03vstinnercreate