diff options
author | dgp <dgp@users.sourceforge.net> | 2006-03-29 22:19:10 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2006-03-29 22:19:10 (GMT) |
commit | 4fc1ccf0fbcec82d7f50f39beaeaf84b46388db7 (patch) | |
tree | 4540c3a9c4bdbaa0eb0ac055eaf9231cdcaeb552 /tests | |
parent | ee637cf09685ba523bf11f70708f24a29d50b74e (diff) | |
download | tcl-4fc1ccf0fbcec82d7f50f39beaeaf84b46388db7.zip tcl-4fc1ccf0fbcec82d7f50f39beaeaf84b46388db7.tar.gz tcl-4fc1ccf0fbcec82d7f50f39beaeaf84b46388db7.tar.bz2 |
* generic/tclPathObj.c: More fixes for path normalization when /../
* tests/fileSystem.test: tries to go beyond root.[Bug 1379287]
Diffstat (limited to 'tests')
-rw-r--r-- | tests/fileSystem.test | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/fileSystem.test b/tests/fileSystem.test index 06ab643..39e02c4 100644 --- a/tests/fileSystem.test +++ b/tests/fileSystem.test @@ -433,6 +433,46 @@ test filesystem-1.46 {file normalisation .. beyond root (Bug 1379287)} { set res "ok" } } {ok} +test filesystem-1.47 {file normalisation .. beyond root (Bug 1379287)} { + set a [file norm /..] + set b [file norm /] + + if {![string equal $a $b]} { + set res "Paths should be equal: $a , $b" + } else { + set res "ok" + } +} {ok} +test filesystem-1.48 {file normalisation .. beyond root (Bug 1379287)} { + set a [file norm /../] + set b [file norm /] + + if {![string equal $a $b]} { + set res "Paths should be equal: $a , $b" + } else { + set res "ok" + } +} {ok} +test filesystem-1.49 {file normalisation .. beyond root (Bug 1379287)} { + set a [file norm /.] + set b [file norm /] + + if {![string equal $a $b]} { + set res "Paths should be equal: $a , $b" + } else { + set res "ok" + } +} {ok} +test filesystem-1.50 {file normalisation .. beyond root (Bug 1379287)} { + set a [file norm /./] + set b [file norm /] + + if {![string equal $a $b]} { + set res "Paths should be equal: $a , $b" + } else { + set res "ok" + } +} {ok} test filesystem-2.0 {new native path} {unix} { foreach f [lsort [glob -nocomplain /usr/bin/c*]] { |