summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-06-25 08:08:05 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-06-25 08:08:05 (GMT)
commit076eb7c9e473f60d3821b1fcc622f69fbb8eba14 (patch)
treea937964246806dc7ac13f70b3ee539f6bb5ad598 /tests
parent54bdc7613fcce8f2394851d92ac54f1fd7820db9 (diff)
parent3b5f5de0a5c31cd0891ca0398b8573ce3e7111b8 (diff)
downloadtcl-076eb7c9e473f60d3821b1fcc622f69fbb8eba14.zip
tcl-076eb7c9e473f60d3821b1fcc622f69fbb8eba14.tar.gz
tcl-076eb7c9e473f60d3821b1fcc622f69fbb8eba14.tar.bz2
[Patch #1536227]: Cygwin network pathname support
Diffstat (limited to 'tests')
-rw-r--r--tests/fileName.test6
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