summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_regrtest.py
Commit message (Collapse)AuthorAgeFilesLines
* rename some more tests to avoid duplicate names (#19123)Benjamin Peterson2013-09-291-3/+3
|
* delete duplicate test (closes #19123)Benjamin Peterson2013-09-291-6/+0
|
* Issue #18935: Fix test_regrtest.test_timeout when built --without-threads (theCharles-François Natali2013-09-081-0/+3
| | | | '--timeout' option requires faulthandler.dump_traceback_later).
* Remove unused --debug option of regrtest.Eli Bendersky2013-09-031-6/+0
| | | | | If bots fail due to using this flag, the buildbot scripts have to be modified to omit it. Regrtest ignores it anyway.
* Issue #16799: Switched from getopt to argparse style in regrtest's argumentSerhiy Storchaka2013-08-291-69/+253
| | | | parsing. Added more tests for regrtest's argument parsing.
* Issue #16854: Fix regrtest.usage() regression introduced in 6e2e5adc0400.Chris Jerdonek2013-01-081-2/+6
| | | | | This fixes a regression introduced in the commit for issue #15302, which switched regrtest from getopt to argparse.
* Issue #15302: Switch regrtest from using getopt to using argparse.Chris Jerdonek2012-12-281-0/+96
This is the first step in refactoring regrtest to use argparse. The regrtest module's main() function still expects a getopt-style return value rather than an argparse.Namespace instance.