mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
Issue 7324: add a sanity check to regrtest argument parsing to
catch the case of an option with no handler.
This commit is contained in:
parent
ca020bb7a7
commit
da82689daa
2 changed files with 7 additions and 0 deletions
|
@ -344,6 +344,10 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
|
|||
print # Force a newline (just in case)
|
||||
print json.dumps(result)
|
||||
sys.exit(0)
|
||||
else:
|
||||
print >>sys.stderr, ("No handler for option {}. Please "
|
||||
"report this as a bug at http://bugs.python.org.").format(o)
|
||||
sys.exit(1)
|
||||
if single and fromfile:
|
||||
usage(2, "-s and -f don't go together!")
|
||||
if use_mp and trace:
|
||||
|
|
|
@ -1567,6 +1567,9 @@ Extension Modules
|
|||
Tests
|
||||
-----
|
||||
|
||||
- Issue #7324: add a sanity check to regrtest argument parsing to
|
||||
catch the case of an option with no handler.
|
||||
|
||||
- Issue #7312: Add a -F flag to run the selected tests in a loop until
|
||||
a test fails. Can be combined with -j.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue