diff options
Diffstat (limited to 'tests/fileName.test')
-rw-r--r-- | tests/fileName.test | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/fileName.test b/tests/fileName.test index 5545cb1..92f0e30 100644 --- a/tests/fileName.test +++ b/tests/fileName.test @@ -10,7 +10,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: fileName.test,v 1.13 2001/08/30 08:53:15 vincentdarley Exp $ +# RCS: @(#) $Id: fileName.test,v 1.14 2001/09/04 18:06:34 vincentdarley Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -318,10 +318,13 @@ test filename-4.19 {Tcl_SplitPath} { set norm [string range $norm $idx end] # fix path away so all platforms are the same regsub -all ":" $norm "/" norm + # make sure we can delete the directory we created + cd $oldDir file delete -force $nastydir set norm } err] cd $oldDir + catch {file delete -force tildetmp} list $res $err } {0 tildetmp/~tilde} |