summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2004-02-18 01:43:49 (GMT)
committerdgp <dgp@noemail.net>2004-02-18 01:43:49 (GMT)
commit7f67e38fab074844554200a9ec290f812222b2cf (patch)
tree1ba42441703ddb2bc81688ed1dc2449c30614abf /library
parent343164991272e2152920d9e817aedd325b5c0847 (diff)
downloadtcl-7f67e38fab074844554200a9ec290f812222b2cf.zip
tcl-7f67e38fab074844554200a9ec290f812222b2cf.tar.gz
tcl-7f67e38fab074844554200a9ec290f812222b2cf.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] FossilOrigin-Name: f14e5e643e3af16939b0221b8fcb64e777917591
Diffstat (limited to 'library')
-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 db4f8fb..b5e2eda 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.78.2.7 2004/02/04 06:14:50 dgp Exp $
+# RCS: @(#) $Id: tcltest.tcl,v 1.78.2.8 2004/02/18 01:43:49 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