summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjenn <jenn>2000-10-27 23:59:58 (GMT)
committerjenn <jenn>2000-10-27 23:59:58 (GMT)
commit8bb5657c11f7482c36f3218345aadeff7c623b97 (patch)
tree8fce003ff9d9e274a1ec9cf868f09ea17ea55259
parentdc87e503bd1b4374f3035e725222ed578b5e967b (diff)
downloadtcl-8bb5657c11f7482c36f3218345aadeff7c623b97.zip
tcl-8bb5657c11f7482c36f3218345aadeff7c623b97.tar.gz
tcl-8bb5657c11f7482c36f3218345aadeff7c623b97.tar.bz2
* library/tcltest1.0/tcltest.tcl: Removed a cd into the test
directory in runAllTests that screwed up the temporary directory setting, effectively preventing users from running tests on multiple platforms at the same time.
-rw-r--r--ChangeLog9
-rw-r--r--library/tcltest/tcltest.tcl5
-rw-r--r--library/tcltest1.0/tcltest.tcl5
3 files changed, 10 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index 3e62121..47cdd7c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2000-10-27 Jennifer Hom <jenn@ajubasolutions.com>
+
+ * library/tcltest1.0/tcltest.tcl: Removed a cd into the test
+ directory in runAllTests that screwed up the temporary directory
+ setting, effectively preventing users from running tests on
+ multiple platforms at the same time.
+
2000-10-26 David Gravereaux <davygrvy@ajubasolutions.com>
* win/tclWinFile.c (TclpMatchFilesTypes): NULL was being set to
@@ -25,7 +32,7 @@
2000-10-19 Jennifer Hom <jenn@ajubasolutions.com>
* library/tcltest1.0/tcltest2.tcl:
- * tests/tcltest2.test:
+ * tests/tcltest2
* doc/tcltest2.n: Code and documentation cleanup. Modified
-verbose to take list of keywords as well as string of letters.
Removed Tcl version information from tcltest. Removed
diff --git a/library/tcltest/tcltest.tcl b/library/tcltest/tcltest.tcl
index 80f80c7..c58c0da 100644
--- a/library/tcltest/tcltest.tcl
+++ b/library/tcltest/tcltest.tcl
@@ -13,7 +13,7 @@
# Copyright (c) 2000 by Ajuba Solutions
# All rights reserved.
#
-# RCS: @(#) $Id: tcltest.tcl,v 1.28 2000/10/24 22:30:32 jenn Exp $
+# RCS: @(#) $Id: tcltest.tcl,v 1.29 2000/10/28 00:00:00 jenn Exp $
# create the "tcltest" namespace for all testing variables and procedures
@@ -2978,9 +2978,6 @@ proc tcltest::runAllTests { {shell ""} } {
incr tcltest::numTestFiles
uplevel [list source $file]
} else {
- # Change to the tests directory so the value of the following
- # variable is set correctly when we spawn the child test processes
- cd $tcltest::testsDirectory
set cmd [concat [list | $shell $file] [split $argv]]
if {[catch {
incr tcltest::numTestFiles
diff --git a/library/tcltest1.0/tcltest.tcl b/library/tcltest1.0/tcltest.tcl
index 80f80c7..c58c0da 100644
--- a/library/tcltest1.0/tcltest.tcl
+++ b/library/tcltest1.0/tcltest.tcl
@@ -13,7 +13,7 @@
# Copyright (c) 2000 by Ajuba Solutions
# All rights reserved.
#
-# RCS: @(#) $Id: tcltest.tcl,v 1.28 2000/10/24 22:30:32 jenn Exp $
+# RCS: @(#) $Id: tcltest.tcl,v 1.29 2000/10/28 00:00:00 jenn Exp $
# create the "tcltest" namespace for all testing variables and procedures
@@ -2978,9 +2978,6 @@ proc tcltest::runAllTests { {shell ""} } {
incr tcltest::numTestFiles
uplevel [list source $file]
} else {
- # Change to the tests directory so the value of the following
- # variable is set correctly when we spawn the child test processes
- cd $tcltest::testsDirectory
set cmd [concat [list | $shell $file] [split $argv]]
if {[catch {
incr tcltest::numTestFiles