summaryrefslogtreecommitdiffstats
path: root/tests/fileSystem.test
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley>2004-11-23 15:23:09 (GMT)
committervincentdarley <vincentdarley>2004-11-23 15:23:09 (GMT)
commitdcc1ed1129283a3f510297869024d755b7a2c17a (patch)
tree6c4fac24b8a3f722baf807efb3f37861b7490753 /tests/fileSystem.test
parent59317f4e489fb79017034911d3e0fd2a01eb2b4e (diff)
downloadtcl-dcc1ed1129283a3f510297869024d755b7a2c17a.zip
tcl-dcc1ed1129283a3f510297869024d755b7a2c17a.tar.gz
tcl-dcc1ed1129283a3f510297869024d755b7a2c17a.tar.bz2
backport file join fix
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