summaryrefslogtreecommitdiffstats
path: root/library/tcltest
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2002-05-08 05:50:24 (GMT)
committerdgp <dgp@users.sourceforge.net>2002-05-08 05:50:24 (GMT)
commit46415a614da041bf28edf86e9bc62f74db244843 (patch)
treec605ee91fc2c74878ef5030253680af46931862c /library/tcltest
parent01765677a4cffc87cbde2e2757dff818462002aa (diff)
downloadtcl-46415a614da041bf28edf86e9bc62f74db244843.zip
tcl-46415a614da041bf28edf86e9bc62f74db244843.tar.gz
tcl-46415a614da041bf28edf86e9bc62f74db244843.tar.bz2
* Corrected [uplevel] quoting when
[source]-ing test script in subdirectories.
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 ad65065..404aca5 100644
--- a/library/tcltest/tcltest.tcl
+++ b/library/tcltest/tcltest.tcl
@@ -15,7 +15,7 @@
# Copyright (c) 2000 by Ajuba Solutions
# All rights reserved.
#
-# RCS: @(#) $Id: tcltest.tcl,v 1.49 2002/04/18 00:04:55 dgp Exp $
+# RCS: @(#) $Id: tcltest.tcl,v 1.50 2002/05/08 05:50:24 dgp Exp $
# create the "tcltest" namespace for all testing variables and
# procedures
@@ -2778,7 +2778,7 @@ proc tcltest::runAllTests { {shell ""} } {
puts [outputChannel] [string repeat ~ 44]
puts [outputChannel] "$dir test began at [eval $timeCmd]\n"
- uplevel 1 "::source [file join $directory all.tcl]"
+ uplevel 1 [list ::source [file join $directory all.tcl]]
set endTime [eval $timeCmd]
puts [outputChannel] "\n$dir test ended at $endTime"