diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-06-25 07:54:37 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-06-25 07:54:37 (GMT) |
commit | 3b5f5de0a5c31cd0891ca0398b8573ce3e7111b8 (patch) | |
tree | 2f6e0a397ce9c0cada48f0a8e54a50dd1f1e3f64 /tests | |
parent | c6060d6e629b818850b39214f796339032378217 (diff) | |
parent | 39b1bc8eefca71fda1f8bebf08eee86cff6f5aec (diff) | |
download | tcl-3b5f5de0a5c31cd0891ca0398b8573ce3e7111b8.zip tcl-3b5f5de0a5c31cd0891ca0398b8573ce3e7111b8.tar.gz tcl-3b5f5de0a5c31cd0891ca0398b8573ce3e7111b8.tar.bz2 |
[Patch #1536227]: Cygwin network pathname support
Diffstat (limited to 'tests')
-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 c613068..a91f4b3 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 -} {/ foo} +} "[file split //] 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 -} {/a/b} +} "[file split //]a/b" test filename-7.18 {Tcl_JoinPath: unix} {testsetplatform} { testsetplatform unix file join /// a b -} {/a/b} +} "[file split //]a/b" test filename-9.1 {Tcl_JoinPath: win} {testsetplatform} { |