summaryrefslogtreecommitdiffstats
path: root/library/tcltest
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2004-02-18 01:41:42 (GMT)
committerdgp <dgp@users.sourceforge.net>2004-02-18 01:41:42 (GMT)
commitcce5798dd2f809a21574d3cfec62dc1884b2f25b (patch)
tree817c33d9c2d2280f97c309aade58a91368a9bb36 /library/tcltest
parent3b42af40c28d1d90b1e03fed0113b81b686326d5 (diff)
downloadtcl-cce5798dd2f809a21574d3cfec62dc1884b2f25b.zip
tcl-cce5798dd2f809a21574d3cfec62dc1884b2f25b.tar.gz
tcl-cce5798dd2f809a21574d3cfec62dc1884b2f25b.tar.bz2
* doc/tcltest.n:
* library/tcltest/tcltest.tcl: Changed -verbose default value to {body error} so that detailed information on unexpected errors in tests is provided by default, even after the fix for [Bug 725253]
Diffstat (limited to 'library/tcltest')
-rw-r--r--library/tcltest/tcltest.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/tcltest/tcltest.tcl b/library/tcltest/tcltest.tcl
index 18d55e7..ec138b9 100644
--- a/library/tcltest/tcltest.tcl
+++ b/library/tcltest/tcltest.tcl
@@ -16,7 +16,7 @@
# Contributions from Don Porter, NIST, 2002. (not subject to US copyright)
# All rights reserved.
#
-# RCS: @(#) $Id: tcltest.tcl,v 1.86 2004/02/04 06:15:18 dgp Exp $
+# RCS: @(#) $Id: tcltest.tcl,v 1.87 2004/02/18 01:41:42 dgp Exp $
package require Tcl 8.3 ;# uses [glob -directory]
namespace eval tcltest {
@@ -630,7 +630,7 @@ namespace eval tcltest {
}
# Default verbosity is to show bodies of failed tests
- Option -verbose body {
+ Option -verbose {body error} {
Takes any combination of the values 'p', 's', 'b', 't' and 'e'.
Test suite will display all passed tests if 'p' is specified, all
skipped tests if 's' is specified, the bodies of failed tests if