summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2002-07-10 18:51:54 (GMT)
committerdgp <dgp@users.sourceforge.net>2002-07-10 18:51:54 (GMT)
commit8a6b2a44507dbb5a40167594764ca667c687edab (patch)
tree05e4dbbc2d8b83c433d4804788f338cf502e3fad /library
parentb226ebf7a3df2c41a29cafef14bf4c3f4586dc82 (diff)
downloadtcl-8a6b2a44507dbb5a40167594764ca667c687edab.zip
tcl-8a6b2a44507dbb5a40167594764ca667c687edab.tar.gz
tcl-8a6b2a44507dbb5a40167594764ca667c687edab.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].
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"
}
}