diff options
author | das <das> | 2004-11-11 01:16:19 (GMT) |
---|---|---|
committer | das <das> | 2004-11-11 01:16:19 (GMT) |
commit | 2437a4e0eef54c58295a621eeb546d9bc4a2d9c3 (patch) | |
tree | 92670acf3e98b4ad2ef1299ab429302a9383c43c /tests/io.test | |
parent | 70c7763d03734b6a1bca07c431abc928cb7bff8a (diff) | |
download | tcl-2437a4e0eef54c58295a621eeb546d9bc4a2d9c3.zip tcl-2437a4e0eef54c58295a621eeb546d9bc4a2d9c3.tar.gz tcl-2437a4e0eef54c58295a621eeb546d9bc4a2d9c3.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.
Diffstat (limited to 'tests/io.test')
-rw-r--r-- | tests/io.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/io.test b/tests/io.test index a66bf89..9492b22 100644 --- a/tests/io.test +++ b/tests/io.test @@ -12,7 +12,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: io.test,v 1.40.2.7 2004/10/28 00:01:08 dgp Exp $ +# RCS: @(#) $Id: io.test,v 1.40.2.8 2004/11/11 01:16:20 das Exp $ if {[catch {package require tcltest 2}]} { puts stderr "Skipping tests in [info script]. tcltest 2 required." @@ -410,7 +410,7 @@ test io-6.6 {Tcl_GetsObj: loop test} { test io-6.7 {Tcl_GetsObj: error in input} {stdio openpipe} { # if (FilterInputBytes(chanPtr, &gs) != 0) - set f [open "|[list [interpreter] cat]" w+] + set f [open "|[list [interpreter] $path(cat)]" w+] puts -nonewline $f "hi\nwould" flush $f gets $f |