summaryrefslogtreecommitdiffstats
path: root/tests/fileSystem.test
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2017-05-23 12:25:07 (GMT)
committerdgp <dgp@users.sourceforge.net>2017-05-23 12:25:07 (GMT)
commitd23fe52664cbef62956cc8ba4e689b9873992b0c (patch)
tree216cec543ae24c904877986891d6388f6655aed8 /tests/fileSystem.test
parent674ed242bc26f2a7d7e773dfd456fd95164f8bac (diff)
parent12e58887228678c386542cde6966948245f7491d (diff)
downloadtcl-d23fe52664cbef62956cc8ba4e689b9873992b0c.zip
tcl-d23fe52664cbef62956cc8ba4e689b9873992b0c.tar.gz
tcl-d23fe52664cbef62956cc8ba4e689b9873992b0c.tar.bz2
merge trunk
Diffstat (limited to 'tests/fileSystem.test')
-rw-r--r--tests/fileSystem.test10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/fileSystem.test b/tests/fileSystem.test
index 1941936..4c90376 100644
--- a/tests/fileSystem.test
+++ b/tests/fileSystem.test
@@ -367,6 +367,16 @@ test filesystem-1.51 {file normalisation .. beyond root (Bug 1379287)} {
test filesystem-1.51.1 {file normalisation .. beyond root (Bug 1379287)} {
testPathEqual [file norm /../../] [file norm /]
} ok
+test filesystem-1.52 {bug f9f390d0fa: file join where strep is not canonical} -constraints unix -body {
+ set x //foo
+ file normalize $x
+ file join $x bar
+} -result /foo/bar
+test filesystem-1.52.1 {bug f9f390d0fa: file join where strep is not canonical} -body {
+ set x //foo
+ file normalize $x
+ file join $x
+} -result /foo
test filesystem-2.0 {new native path} {unix} {
foreach f [lsort [glob -nocomplain /usr/bin/c*]] {