diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-10-04 16:01:57 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-10-04 16:01:57 (GMT) |
commit | f852823f2d4d5f92dee67e03cbdc4da22d8be30b (patch) | |
tree | 593e2656e33a3906d65c33734840fbb1b9bae6e4 /tests/fileName.test | |
parent | 3f371a5084c05daba396645abd9a25deb3d023d1 (diff) | |
parent | 49c9b2444c871d10db7b756b17827f435d5f96d1 (diff) | |
download | tcl-f852823f2d4d5f92dee67e03cbdc4da22d8be30b.zip tcl-f852823f2d4d5f92dee67e03cbdc4da22d8be30b.tar.gz tcl-f852823f2d4d5f92dee67e03cbdc4da22d8be30b.tar.bz2 |
TIP 402: General Platform UNC 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 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 |