diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-10-05 07:36:50 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-10-05 07:36:50 (GMT) |
commit | a019958ca7cc71041afbcc43c6d6a40e88043f9e (patch) | |
tree | acc76654386199ef4076881126d924d5c5e84dc1 /tests/fileName.test | |
parent | 4b1d6e9ae2d95e94f8d3c2113e43a9dbc45f4597 (diff) | |
parent | 3cb6c489a3c0515c7b3aade0aaa139e637400559 (diff) | |
download | tcl-a019958ca7cc71041afbcc43c6d6a40e88043f9e.zip tcl-a019958ca7cc71041afbcc43c6d6a40e88043f9e.tar.gz tcl-a019958ca7cc71041afbcc43c6d6a40e88043f9e.tar.bz2 |
Merge 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 0dd6f86..c4735cb 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 |