]> granicus.if.org Git - python/commitdiff
Merged revisions 75528 via svnmerge from
authorR. David Murray <rdmurray@bitdance.com>
Mon, 19 Oct 2009 18:06:17 +0000 (18:06 +0000)
committerR. David Murray <rdmurray@bitdance.com>
Mon, 19 Oct 2009 18:06:17 +0000 (18:06 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r75528 | r.david.murray | 2009-10-19 13:53:58 -0400 (Mon, 19 Oct 2009) | 4 lines

  Clarify error report message, and don't recommend running in verbose
  mode for more information if we are already running in verbose mode.
........

Lib/test/support.py

index 611d48fe9b19643499612685b892ef6e6c4c0854..0f3e2ee9b6f2d7ecc573dda90d837c49b36317bc 100644 (file)
@@ -889,7 +889,8 @@ def _run_suite(suite):
         elif len(result.failures) == 1 and not result.errors:
             err = result.failures[0][1]
         else:
-            err = "errors occurred; run in verbose mode for details"
+            err = "multiple errors occurred"
+            if not verbose: err += "; run in verbose mode for details"
         raise TestFailed(err)