diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-06-25 08:08:05 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-06-25 08:08:05 (GMT) |
commit | 3759b05ed032d2795215249b406622f4e064f730 (patch) | |
tree | a937964246806dc7ac13f70b3ee539f6bb5ad598 /tests/fileName.test | |
parent | ef36cd63db3d03e2f96aa89f8575e01f15944fe2 (diff) | |
parent | 1b403491585909834fa1cdc86d326ed2d89f6710 (diff) | |
download | tcl-3759b05ed032d2795215249b406622f4e064f730.zip tcl-3759b05ed032d2795215249b406622f4e064f730.tar.gz tcl-3759b05ed032d2795215249b406622f4e064f730.tar.bz2 |
[Patch #1536227]: Cygwin network pathname support
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 affacff..251f12c 100644 --- a/tests/fileName.test +++ b/tests/fileName.test @@ -196,7 +196,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 @@ -433,11 +433,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} { testsetplatform win |