diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-08-08 09:25:29 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-08-08 09:25:29 (GMT) |
commit | c31f309b59260de32048173493f3463dbdaa51f7 (patch) | |
tree | 289147f6718d7aa6b689d82e0440a1b00d836b2a /tests/fileName.test | |
parent | fa8578631ca16ef4a01ce48b5c7b27d5dad66e54 (diff) | |
download | tcl-c31f309b59260de32048173493f3463dbdaa51f7.zip tcl-c31f309b59260de32048173493f3463dbdaa51f7.tar.gz tcl-c31f309b59260de32048173493f3463dbdaa51f7.tar.bz2 |
[Bug #1536227]: Cygwin network pathname supoort
Diffstat (limited to 'tests/fileName.test')
-rw-r--r-- | tests/fileName.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/fileName.test b/tests/fileName.test index a91f4b3..68c5592 100644 --- a/tests/fileName.test +++ b/tests/fileName.test @@ -189,7 +189,7 @@ test filename-4.12 {Tcl_SplitPath: unix} {testsetplatform} { test filename-4.13 {Tcl_SplitPath: unix} {testsetplatform} { testsetplatform unix file split //foo -} "[file split //] foo" +} "/ foo" test filename-4.14 {Tcl_SplitPath: unix} {testsetplatform} { testsetplatform unix file split foo//bar @@ -429,11 +429,11 @@ test filename-7.16 {Tcl_JoinPath: unix} {testsetplatform} { test filename-7.17 {Tcl_JoinPath: unix} {testsetplatform} { testsetplatform unix file join //a b -} "[file split //]a/b" +} "/a/b" test filename-7.18 {Tcl_JoinPath: unix} {testsetplatform} { testsetplatform unix file join /// a b -} "[file split //]a/b" +} "/a/b" test filename-9.1 {Tcl_JoinPath: win} {testsetplatform} { |