summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2002-07-10 18:51:54 (GMT)
committerdgp <dgp@noemail.net>2002-07-10 18:51:54 (GMT)
commit9c86d5aa38d9dfbdb4d565a5cb201694e03f3cf9 (patch)
tree05e4dbbc2d8b83c433d4804788f338cf502e3fad /library
parentcaeae6d8f0e90695be77e3763b19be137df75ec4 (diff)
downloadtcl-9c86d5aa38d9dfbdb4d565a5cb201694e03f3cf9.zip
tcl-9c86d5aa38d9dfbdb4d565a5cb201694e03f3cf9.tar.gz
tcl-9c86d5aa38d9dfbdb4d565a5cb201694e03f3cf9.tar.bz2
* Greatly reduced the number of [exec]s, using slave interps instead.
* Fixed bug uncovered in the conversion where a message was written to stdout instead of [outputChannel]. FossilOrigin-Name: bc0ebeeb930d1c5e77ca60e95746ac9bd66eea1a
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 f6e9351..f5cc4a2 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.68 2002/07/08 20:43:50 dgp Exp $
+# RCS: @(#) $Id: tcltest.tcl,v 1.69 2002/07/10 18:51:54 dgp Exp $
package require Tcl 8.3 ;# uses [glob -directory]
namespace eval tcltest {
@@ -2738,7 +2738,7 @@ proc tcltest::runAllTests { {shell ""} } {
if {[info exists testFileFailures]} {
puts [outputChannel] "\nTest files exiting with errors: \n"
foreach file $testFileFailures {
- puts " [file tail $file]\n"
+ puts [outputChannel] " [file tail $file]\n"
}
}