diff options
author | dgp <dgp@users.sourceforge.net> | 2017-05-23 12:25:07 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2017-05-23 12:25:07 (GMT) |
commit | d23fe52664cbef62956cc8ba4e689b9873992b0c (patch) | |
tree | 216cec543ae24c904877986891d6388f6655aed8 /tests/fileSystem.test | |
parent | 674ed242bc26f2a7d7e773dfd456fd95164f8bac (diff) | |
parent | 12e58887228678c386542cde6966948245f7491d (diff) | |
download | tcl-d23fe52664cbef62956cc8ba4e689b9873992b0c.zip tcl-d23fe52664cbef62956cc8ba4e689b9873992b0c.tar.gz tcl-d23fe52664cbef62956cc8ba4e689b9873992b0c.tar.bz2 |
merge trunk
Diffstat (limited to 'tests/fileSystem.test')
-rw-r--r-- | tests/fileSystem.test | 10 |
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*]] { |