summaryrefslogtreecommitdiffstats
path: root/tests/unixInit.test
diff options
context:
space:
mode:
authordas <das>2004-11-11 01:16:05 (GMT)
committerdas <das>2004-11-11 01:16:05 (GMT)
commit55b2cf944b2501328926c9ea94f9036d2ce1f669 (patch)
treeb66cb4de08f8e012da0ebe9996d14c67a0c34259 /tests/unixInit.test
parent740b782d72d5891cc221997d329a66754ee437c5 (diff)
downloadtcl-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/unixInit.test')
-rw-r--r--tests/unixInit.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unixInit.test b/tests/unixInit.test
index 350c748..6098870 100644
--- a/tests/unixInit.test
+++ b/tests/unixInit.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: unixInit.test,v 1.40 2004/06/23 15:36:58 dkf Exp $
+# RCS: @(#) $Id: unixInit.test,v 1.41 2004/11/11 01:16:07 das Exp $
package require tcltest 2
namespace import -force ::tcltest::*
@@ -397,9 +397,9 @@ test unixInit-7.1 {closed standard channel: Bug 772288} -constraints {
makeFile {puts [open /dev/null]} crash.tcl
makeFile "
close stdin
- [list exec $tclsh crash.tcl]
+ [list exec $tclsh [file join [temporaryDirectory] crash.tcl]]
" crashtest.tcl
- exec $tclsh crashtest.tcl
+ exec $tclsh [file join [temporaryDirectory] crashtest.tcl]
} -cleanup {
removeFile crash.tcl
removeFile crashtest.tcl