diff options
author | das <das> | 2004-11-11 01:16:19 (GMT) |
---|---|---|
committer | das <das> | 2004-11-11 01:16:19 (GMT) |
commit | 2437a4e0eef54c58295a621eeb546d9bc4a2d9c3 (patch) | |
tree | 92670acf3e98b4ad2ef1299ab429302a9383c43c /tests/fileName.test | |
parent | 70c7763d03734b6a1bca07c431abc928cb7bff8a (diff) | |
download | tcl-2437a4e0eef54c58295a621eeb546d9bc4a2d9c3.zip tcl-2437a4e0eef54c58295a621eeb546d9bc4a2d9c3.tar.gz tcl-2437a4e0eef54c58295a621eeb546d9bc4a2d9c3.tar.bz2 |
* tests/fileName.test:
* tests/fileSystem.test:
* tests/io.test:
* tests/tcltest.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 19b08ec..d0497de 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.30.2.5 2004/05/04 22:12:49 hobbs Exp $ +# RCS: @(#) $Id: fileName.test,v 1.30.2.6 2004/11/11 01:16:19 das Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -331,7 +331,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} |