summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorjan.nijtmans <jan.nijtmans@noemail.net>2012-06-22 12:07:28 (GMT)
committerjan.nijtmans <jan.nijtmans@noemail.net>2012-06-22 12:07:28 (GMT)
commit12e16fe65c6873a9bf6a1a0b54fafdb1223d2a5b (patch)
tree205c7cbc0c445f67f3ef81c6269c65f13bc62661 /tests
parent13dbccdff3cb799f58fc821f0eac5f3df80552ea (diff)
downloadtcl-12e16fe65c6873a9bf6a1a0b54fafdb1223d2a5b.zip
tcl-12e16fe65c6873a9bf6a1a0b54fafdb1223d2a5b.tar.gz
tcl-12e16fe65c6873a9bf6a1a0b54fafdb1223d2a5b.tar.bz2
Cygwin network pathname support
FossilOrigin-Name: 2194dfa1f722d00301250ecb34f58b134fbedb97
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 c613068..a91f4b3 100644
--- a/tests/fileName.test
+++ b/tests/fileName.test
@@ -189,7 +189,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
@@ -429,11 +429,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} {