diff options
author | dgp <dgp@users.sourceforge.net> | 2002-05-08 05:59:28 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-05-08 05:59:28 (GMT) |
commit | ae6150523964f0386604a8f2cbdc9e2d669c695a (patch) | |
tree | 2d6511c0d816701b5653e4ed3e160a0f65daea7a /tests/unixInit.test | |
parent | 1ff071777e6546bc8caa062aa06db59fbe0e8594 (diff) | |
download | tcl-ae6150523964f0386604a8f2cbdc9e2d669c695a.zip tcl-ae6150523964f0386604a8f2cbdc9e2d669c695a.tar.gz tcl-ae6150523964f0386604a8f2cbdc9e2d669c695a.tar.bz2 |
* Fixes to test suite when there's a space
in the working path. Thanks to Kevin Kenny.
Diffstat (limited to 'tests/unixInit.test')
-rw-r--r-- | tests/unixInit.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unixInit.test b/tests/unixInit.test index 54af8ab..c015762 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.25 2001/10/10 20:06:46 dgp Exp $ +# RCS: @(#) $Id: unixInit.test,v 1.26 2002/05/08 06:31:50 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -113,7 +113,7 @@ test unixInit-1.2 {initialisation: standard channel type deduction} {unixOnly in } {OK} proc getlibpath "{program [list $::tcltest::tcltest]}" { - set f [open "|$program" w+] + set f [open "|[list $program]" w+] fconfigure $f -buffering none puts $f {puts $tcl_libPath; exit} set path [gets $f] |