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 vstinner
Date 2018-05-29.11:41:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1527594063.1.0.682650639539.issue33680@psf.upfronthosting.co.za>
In-reply-to
Content
The -w option of regrtest (python -m test) re-run failed tests in verbose in the current process. Problem: if the test does crash, regrtest doesn't re-run following tests, it doesn't write the final tests result (like failing tests, total duration, etc.).

To make regrtest tolerant to such crashes, re-run tests should be run in verbose mode. The only constraint is to disable buffering on stdout and stderr to make sure that stdout and stderr order is kept in pipes. Or maybe stderr should be redirected to stdout to avoid ordering issue?
History
Date User Action Args
2018-05-29 11:41:03vstinnersetrecipients: + vstinner
2018-05-29 11:41:03vstinnersetmessageid: <1527594063.1.0.682650639539.issue33680@psf.upfronthosting.co.za>
2018-05-29 11:41:02vstinnerlinkissue33680 messages
2018-05-29 11:41:02vstinnercreate