diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-09-17 12:58:43 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-09-17 12:58:43 (GMT) |
commit | 289ab3d6335f6ab2fb808df9f94319f471013eac (patch) | |
tree | 1bbbb11ff03e4ef0302bc8f39aaa9579c725025f /tests/fileName.test | |
parent | d171543388eb0149647f980eb25c80a9bfdadd1e (diff) | |
parent | a824edfe93321dc7cc71b2dfc700544a7fc6b45a (diff) | |
download | tcl-289ab3d6335f6ab2fb808df9f94319f471013eac.zip tcl-289ab3d6335f6ab2fb808df9f94319f471013eac.tar.gz tcl-289ab3d6335f6ab2fb808df9f94319f471013eac.tar.bz2 |
rebase to 8.7
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 04273d7..575a17f 100644 --- a/tests/fileName.test +++ b/tests/fileName.test @@ -201,7 +201,7 @@ test filename-4.12 {Tcl_SplitPath: unix} {testsetplatform} { test filename-4.13 {Tcl_SplitPath: unix} {testsetplatform} { testsetplatform unix file split //foo -} "/ foo" +} "//foo" test filename-4.14 {Tcl_SplitPath: unix} {testsetplatform} { testsetplatform unix file split foo//bar @@ -438,14 +438,14 @@ test filename-7.16 {Tcl_JoinPath: unix} {testsetplatform} { test filename-7.17 {Tcl_JoinPath: unix} {testsetplatform} { testsetplatform unix file join //a b -} "/a/b" +} "//a/b" test filename-7.18 {Tcl_JoinPath: unix} {testsetplatform} { testsetplatform unix file join /// a b } "/a/b" test filename-7.19 {[Bug f34cf83dd0]} { file join foo //bar -} /bar +} //bar test filename-9.1 {Tcl_JoinPath: win} {testsetplatform} { testsetplatform win |