Kaydet (Commit) 35768ad4 authored tarafından R. David Murray's avatar R. David Murray

Merged revisions 76276 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r76276 | r.david.murray | 2009-11-14 19:04:32 -0500 (Sat, 14 Nov 2009) | 3 lines

  Issue 7324: add a sanity check to regrtest argument parsing to
  catch the case of an option with no handler.
........
üst 18163c3f
...@@ -370,6 +370,10 @@ def main(tests=None, testdir=None, verbose=0, quiet=False, ...@@ -370,6 +370,10 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
print() # Force a newline (just in case) print() # Force a newline (just in case)
print(json.dumps(result)) print(json.dumps(result))
sys.exit(0) sys.exit(0)
else:
print(("No handler for option {}. Please report this as a bug "
"at http://bugs.python.org.").format(o), file=sys.stderr)
sys.exit(1)
if single and fromfile: if single and fromfile:
usage("-s and -f don't go together!") usage("-s and -f don't go together!")
if use_mp and trace: if use_mp and trace:
......
...@@ -378,6 +378,9 @@ Documentation ...@@ -378,6 +378,9 @@ Documentation
Tests 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 - Issue #7312: Add a -F flag to run the selected tests in a loop until
a test fails. Can be combined with -j. a test fails. Can be combined with -j.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment