summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2009-10-19 18:06:17 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2009-10-19 18:06:17 (GMT)
commit723357e0145f31505f9d35effc28803c06404829 (patch)
tree28e2748321fdda870a87fe32411b90a6da925976 /Lib
parent9da819757077963096f30bf597fada2c000ca2a0 (diff)
downloadcpython-723357e0145f31505f9d35effc28803c06404829.zip
cpython-723357e0145f31505f9d35effc28803c06404829.tar.gz
cpython-723357e0145f31505f9d35effc28803c06404829.tar.bz2
Merged revisions 75528 via svnmerge from
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. ........
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/support.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/support.py b/Lib/test/support.py
index 611d48f..0f3e2ee 100644
--- a/Lib/test/support.py
+++ b/Lib/test/support.py
@@ -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)