summaryrefslogtreecommitdiffstats
path: root/tests/fileSystem.test
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley>2003-12-12 17:15:23 (GMT)
committervincentdarley <vincentdarley>2003-12-12 17:15:23 (GMT)
commit91b89c4cee20da43decf2170fbc967b922c28090 (patch)
tree4b0c4afc8f7788def7a4acebfb7289468d88dfb0 /tests/fileSystem.test
parentac8f145f5da3f90867e464c1df5954fb60f5fe62 (diff)
downloadtcl-91b89c4cee20da43decf2170fbc967b922c28090.zip
tcl-91b89c4cee20da43decf2170fbc967b922c28090.tar.gz
tcl-91b89c4cee20da43decf2170fbc967b922c28090.tar.bz2
better filesystem tests with more informative results
Diffstat (limited to 'tests/fileSystem.test')
-rw-r--r--tests/fileSystem.test24
1 files changed, 16 insertions, 8 deletions
diff --git a/tests/fileSystem.test b/tests/fileSystem.test
index ff1c605..9301f7d 100644
--- a/tests/fileSystem.test
+++ b/tests/fileSystem.test
@@ -31,6 +31,14 @@ makeFile "test file" gorp.file
makeDirectory dir.file
makeFile "test file in directory" [file join dir.file inside.file]
+proc testPathEqual {one two} {
+ if {[string equal $one $two]} {
+ return 1
+ } else {
+ return "not equal: $one $two"
+ }
+}
+
if {[catch {
file link link.file gorp.file
file link \
@@ -55,22 +63,22 @@ test filesystem-1.1 {link normalisation} {hasLinks} {
} {0}
test filesystem-1.2 {link normalisation} {hasLinks macOrUnix} {
- string equal [file normalize [file join gorp.file foo]] \
+ testPathEqual [file normalize [file join gorp.file foo]] \
[file normalize [file join link.file foo]]
} {1}
test filesystem-1.3 {link normalisation} {hasLinks} {
- string equal [file normalize [file join dir.file foo]] \
+ testPathEqual [file normalize [file join dir.file foo]] \
[file normalize [file join dir.link foo]]
} {1}
test filesystem-1.4 {link normalisation} {hasLinks} {
- string equal [file normalize [file join dir.file inside.file]] \
+ testPathEqual [file normalize [file join dir.file inside.file]] \
[file normalize [file join dir.link inside.file]]
} {1}
test filesystem-1.5 {link normalisation} {hasLinks} {
- string equal [file normalize [file join dir.file linkinside.file]] \
+ testPathEqual [file normalize [file join dir.file linkinside.file]] \
[file normalize [file join dir.file linkinside.file]]
} {1}
@@ -80,7 +88,7 @@ test filesystem-1.6 {link normalisation} {hasLinks} {
} {0}
test filesystem-1.7 {link normalisation} {hasLinks macOrUnix} {
- string equal [file normalize [file join dir.link linkinside.file foo]] \
+ testPathEqual [file normalize [file join dir.link linkinside.file foo]] \
[file normalize [file join dir.file inside.file foo]]
} {1}
@@ -92,13 +100,13 @@ test filesystem-1.8 {link normalisation} {hasLinks} {
test filesystem-1.9 {link normalisation} {macOrUnix hasLinks} {
file delete -force dir.link
file link dir.link [file nativename dir.file]
- string equal [file normalize [file join dir.file linkinside.file foo]] \
+ testPathEqual [file normalize [file join dir.file linkinside.file foo]] \
[file normalize [file join dir.link inside.file foo]]
} {1}
test filesystem-1.10 {link normalisation: double link} {macOrUnix hasLinks} {
file link dir2.link dir.link
- string equal [file normalize [file join dir.file linkinside.file foo]] \
+ testPathEqual [file normalize [file join dir.file linkinside.file foo]] \
[file normalize [file join dir2.link inside.file foo]]
} {1}
@@ -106,7 +114,7 @@ makeDirectory dir2.file
test filesystem-1.11 {link normalisation: double link, back in tree} {macOrUnix hasLinks} {
file link [file join dir2.file dir2.link] dir2.link
- string equal [file normalize [file join dir.file linkinside.file foo]] \
+ testPathEqual [file normalize [file join dir.file linkinside.file foo]] \
[file normalize [file join dir2.file dir2.link inside.file foo]]
} {1}