summaryrefslogtreecommitdiffstats
path: root/tests/fileSystem.test
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley@noemail.net>2004-11-23 15:23:08 (GMT)
committervincentdarley <vincentdarley@noemail.net>2004-11-23 15:23:08 (GMT)
commitdcb02c94a103a326c77322dbd630617612a906b2 (patch)
tree6c4fac24b8a3f722baf807efb3f37861b7490753 /tests/fileSystem.test
parentd33a2216d241593b9fd72640063179d6bfcf6952 (diff)
downloadtcl-dcb02c94a103a326c77322dbd630617612a906b2.zip
tcl-dcb02c94a103a326c77322dbd630617612a906b2.tar.gz
tcl-dcb02c94a103a326c77322dbd630617612a906b2.tar.bz2
backport file join fix
FossilOrigin-Name: 1a608efe04dca17b50f0e4659c5ab304237050e7
Diffstat (limited to 'tests/fileSystem.test')
-rw-r--r--tests/fileSystem.test8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/fileSystem.test b/tests/fileSystem.test
index 7ce7746..20c04ae 100644
--- a/tests/fileSystem.test
+++ b/tests/fileSystem.test
@@ -555,6 +555,14 @@ test filesystem-9.5 {path objects and file tail and object rep} {
set res
} {test test}
+test filesystem-9.6 {path objects and file join and object rep} {winOnly} {
+ set res {}
+ set p "C:\\toto"
+ lappend res [file join $p toto]
+ file isdirectory $p
+ lappend res [file join $p toto]
+} {C:/toto/toto C:/toto/toto}
+
cleanupTests
}
namespace delete ::tcl::test::fileSystem