summaryrefslogtreecommitdiffstats
path: root/tests/fileName.test
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 /tests/fileName.test
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.
Diffstat (limited to 'tests/fileName.test')
-rw-r--r--tests/fileName.test10
1 files changed, 6 insertions, 4 deletions
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]