diff options
author | vincentdarley <vincentdarley> | 2004-11-23 15:23:09 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2004-11-23 15:23:09 (GMT) |
commit | dcc1ed1129283a3f510297869024d755b7a2c17a (patch) | |
tree | 6c4fac24b8a3f722baf807efb3f37861b7490753 /tests | |
parent | 59317f4e489fb79017034911d3e0fd2a01eb2b4e (diff) | |
download | tcl-dcc1ed1129283a3f510297869024d755b7a2c17a.zip tcl-dcc1ed1129283a3f510297869024d755b7a2c17a.tar.gz tcl-dcc1ed1129283a3f510297869024d755b7a2c17a.tar.bz2 |
backport file join fix
Diffstat (limited to 'tests')
-rw-r--r-- | tests/fileSystem.test | 8 |
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 |