diff options
| author | dgp@users.sourceforge.net <dgp> | 2002-05-08 05:59:28 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2002-05-08 05:59:28 (GMT) |
| commit | 8029f83c29cd3c1028f4b76a1bc45688c4dad327 (patch) | |
| tree | 2d6511c0d816701b5653e4ed3e160a0f65daea7a /tests/unixInit.test | |
| parent | d3df8ecb803b411d76d5c62056e5aa49ae8cc908 (diff) | |
| download | tcl-8029f83c29cd3c1028f4b76a1bc45688c4dad327.zip tcl-8029f83c29cd3c1028f4b76a1bc45688c4dad327.tar.gz tcl-8029f83c29cd3c1028f4b76a1bc45688c4dad327.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] |
