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/tcltest.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/tcltest.test')
-rwxr-xr-x | tests/tcltest.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/tcltest.test b/tests/tcltest.test index 5dee76f..e7a36fb 100755 --- a/tests/tcltest.test +++ b/tests/tcltest.test @@ -6,7 +6,7 @@ # Copyright (c) 2000 by Ajuba Solutions # All rights reserved. # -# RCS: @(#) $Id: tcltest.test,v 1.46 2004/11/02 19:03:29 dgp Exp $ +# RCS: @(#) $Id: tcltest.test,v 1.47 2004/11/11 01:16:07 das Exp $ # Note that there are several places where the value of # tcltest::currentFailure is stored/reset in the -setup/-cleanup @@ -1752,7 +1752,7 @@ test tcltest-26.1 {Bug/RFE 1017151} -setup { tcltest::cleanupTests } test.tcl } -body { - slave msg test.tcl + slave msg [file join [temporaryDirectory] test.tcl] set msg } -cleanup { removeFile test.tcl @@ -1772,7 +1772,7 @@ test tcltest-26.2 {Bug/RFE 1017151} -setup { tcltest::cleanupTests } test.tcl } -body { - slave msg test.tcl + slave msg [file join [temporaryDirectory] test.tcl] set msg } -cleanup { removeFile test.tcl |