diff options
author | vincentdarley <vincentdarley> | 2004-03-30 15:35:45 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2004-03-30 15:35:45 (GMT) |
commit | 5b3cf09d56c6bccfa2d2d4ffcedab7afa9738188 (patch) | |
tree | e1181b1465473c4ac32033533ed4cf3cfec67c39 /tests/fileSystem.test | |
parent | e7a7c5a2234e5cee662915660923c347b6a5d07d (diff) | |
download | tcl-5b3cf09d56c6bccfa2d2d4ffcedab7afa9738188.zip tcl-5b3cf09d56c6bccfa2d2d4ffcedab7afa9738188.tar.gz tcl-5b3cf09d56c6bccfa2d2d4ffcedab7afa9738188.tar.bz2 |
fix to glob with volume relative paths, bug 898238
Diffstat (limited to 'tests/fileSystem.test')
-rw-r--r-- | tests/fileSystem.test | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/fileSystem.test b/tests/fileSystem.test index 5f8105d..a619929 100644 --- a/tests/fileSystem.test +++ b/tests/fileSystem.test @@ -400,6 +400,28 @@ test filesystem-1.39 {file normalisation with volume relative} {winOnly} { } } {ok} +test filesystem-1.40 {file normalisation with repeated separators} { + set a [file norm foo////bar] + set b [file norm foo/bar] + + if {![string equal $a $b]} { + set res "Paths should be equal: $a , $b" + } else { + set res "ok" + } +} {ok} + +test filesystem-1.41 {file normalisation with repeated separators} {winOnly} { + set a [file norm foo\\\\\\bar] + set b [file norm foo/bar] + + if {![string equal $a $b]} { + set res "Paths should be equal: $a , $b" + } else { + set res "ok" + } +} {ok} + test filesystem-2.0 {new native path} {unixOnly} { foreach f [lsort [glob -nocomplain /usr/bin/c*]] { catch {file readlink $f} |