summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhobbs <hobbs>2004-05-04 22:31:10 (GMT)
committerhobbs <hobbs>2004-05-04 22:31:10 (GMT)
commitc468181748dd568a55755362995a806c35544b9a (patch)
tree29177d0ab8268ed968b8ea4674d00c5bf6fed892
parent3967737bc5402ae38fa82c9c8bc95d314b35cab9 (diff)
downloadtcl-c468181748dd568a55755362995a806c35544b9a.zip
tcl-c468181748dd568a55755362995a806c35544b9a.tar.gz
tcl-c468181748dd568a55755362995a806c35544b9a.tar.bz2
* tests/fileSystem.test (filesystem-1.39): replace 'file volumes'
* tests/fileName.test (filename-12.9,10): lindex with direct C:/ hard-coded because A:/ was being used and that is empty for most.
-rw-r--r--ChangeLog12
-rw-r--r--tests/fileName.test10
-rw-r--r--tests/fileSystem.test2
3 files changed, 17 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 8d2ac6a..e9acccb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,11 +1,19 @@
+2004-05-04 Jeff Hobbs <jeffh@ActiveState.com>
+
+ * tests/fileSystem.test (filesystem-1.39): replace 'file volumes'
+ * tests/fileName.test (filename-12.9,10): lindex with direct C:/
+ hard-coded because A:/ was being used and that is empty for most.
+
+ * tests/winFCmd.test (winFCmd-16.12): test volumerelative $HOME
+
2004-05-04 Don Porter <dgp@users.sourceforge.net>
* generic/tclAlloc.c: Make sure Tclp*Alloc* routines get
* generic/tclInt.h: declared in the TCL_MEM_DEBUG and
* generic/tclThreadAlloc.c: TCL_THREADS configuration. [Bug 947564]
- * tests/tcltest.test: Test corrections for Mac OSX. Thanks
- to Steven Abner (tauvan). [Bug 947440]
+ * tests/tcltest.test: Test corrections for Mac OSX. Thanks
+ to Steven Abner (tauvan). [Bug 947440]
2004-05-04 Donal K. Fellows <donal.k.fellows@man.ac.uk>
diff --git a/tests/fileName.test b/tests/fileName.test
index 791b69d..ae900af 100644
--- a/tests/fileName.test
+++ b/tests/fileName.test
@@ -10,7 +10,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: fileName.test,v 1.40 2004/03/30 15:35:47 vincentdarley Exp $
+# RCS: @(#) $Id: fileName.test,v 1.41 2004/05/04 22:31:10 hobbs Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest
@@ -1175,7 +1175,9 @@ test filename-12.8 {globbing at filesystem root} {unixOnly} {
set equal
} {1}
test filename-12.9 {globbing at filesystem root} {winOnly} {
- set dir [lindex [glob -type d [lindex [file volumes] 0]*] 0]
+ # Can't grab just anything from 'file volumes' because we need a dir
+ # that has subdirs - assume that C:/ exists across Windows machines.
+ set dir [lindex [glob -type d C:/*] 0]
set first [string range $dir 0 3]
set res1 [glob -nocomplain ${first}*]
set res2 [glob -path $first *]
@@ -1187,9 +1189,9 @@ test filename-12.9 {globbing at filesystem root} {winOnly} {
} {1}
test filename-12.10 {globbing with volume relative paths} {winOnly} {
- set dir [lindex [glob -type d [lindex [file volumes] 0]*] 0]
+ set dir [lindex [glob -type d C:/*] 0]
set pwd [pwd]
- cd [lindex [file volumes] 0]
+ cd C:/
set res1 [glob -nocomplain [string range $dir 2 end]]
cd $pwd
set res2 [list $dir]
diff --git a/tests/fileSystem.test b/tests/fileSystem.test
index a619929..e9c4ee6 100644
--- a/tests/fileSystem.test
+++ b/tests/fileSystem.test
@@ -387,7 +387,7 @@ test filesystem-1.38 {file normalisation with volume relative} \
} "[lindex $drives 0]foo"
test filesystem-1.39 {file normalisation with volume relative} {winOnly} {
- set drv [lindex [file volumes] 0]
+ set drv C:/
set dir [lindex [glob -type d -dir $drv *] 0]
set old [pwd]
cd $dir