diff options
author | das <das@noemail.net> | 2004-11-11 01:16:18 (GMT) |
---|---|---|
committer | das <das@noemail.net> | 2004-11-11 01:16:18 (GMT) |
commit | aadbaff1cd845e43095f328ab7217ca3749d3ea0 (patch) | |
tree | 92670acf3e98b4ad2ef1299ab429302a9383c43c /tests/fileName.test | |
parent | 2dc55237f16f6b9536125cb2ebe17879a39f823a (diff) | |
download | tcl-aadbaff1cd845e43095f328ab7217ca3749d3ea0.zip tcl-aadbaff1cd845e43095f328ab7217ca3749d3ea0.tar.gz tcl-aadbaff1cd845e43095f328ab7217ca3749d3ea0.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.
FossilOrigin-Name: 2b9f53cea6a2326ce5bbee67f18d24129e9d1310
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} |