diff options
author | das <das> | 2004-11-11 01:16:05 (GMT) |
---|---|---|
committer | das <das> | 2004-11-11 01:16:05 (GMT) |
commit | 55b2cf944b2501328926c9ea94f9036d2ce1f669 (patch) | |
tree | b66cb4de08f8e012da0ebe9996d14c67a0c34259 /tests/fileName.test | |
parent | 740b782d72d5891cc221997d329a66754ee437c5 (diff) | |
download | tcl-55b2cf944b2501328926c9ea94f9036d2ce1f669.zip tcl-55b2cf944b2501328926c9ea94f9036d2ce1f669.tar.gz tcl-55b2cf944b2501328926c9ea94f9036d2ce1f669.tar.bz2 |
* tests/fileName.test:
* tests/fileSystem.test:
* tests/io.test:
* tests/msgcat.test:
* tests/tcltest.test:
* tests/unixInit.test: fixed bugs causing failures when running
tests with -tmpdir arg not set to working dir.
Diffstat (limited to 'tests/fileName.test')
-rw-r--r-- | tests/fileName.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fileName.test b/tests/fileName.test index 0cf0c1c..1e50b01 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.44 2004/10/07 14:50:23 vincentdarley Exp $ +# RCS: @(#) $Id: fileName.test,v 1.45 2004/11/11 01:16:05 das Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -230,7 +230,7 @@ test filename-4.19 {Tcl_SplitPath} { set norm } err] cd $oldDir - catch {file delete -force tildetmp} + catch {file delete -force [file join [temporaryDirectory] tildetmp]} list $res $err } {0 tildetmp/~tilde} |