diff options
author | dgp <dgp@users.sourceforge.net> | 2008-06-20 19:23:23 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-06-20 19:23:23 (GMT) |
commit | f1797e198ccb2c3a784d65272c7eb5d3fa9ca502 (patch) | |
tree | 0e644758f52d7718407a6c283c2c79b8b65cbec9 /tests/io.test | |
parent | f0c083ee48e56d7bbe529ee2182271bffce11aad (diff) | |
download | tcl-f1797e198ccb2c3a784d65272c7eb5d3fa9ca502.zip tcl-f1797e198ccb2c3a784d65272c7eb5d3fa9ca502.tar.gz tcl-f1797e198ccb2c3a784d65272c7eb5d3fa9ca502.tar.bz2 |
* generic/tclInterp.c: Fixed completely boneheaded mistake that
* tests/interp.test: [interp bgerror $slave] and [$slave bgerror]
would always act like [interp bgerror {}]. [Bug 1999035].
* tests/chanio.test: Corrected flawed tests revealed by a -debug 1
* tests/event.test: -singleproc 1 test suite run.
* tests/io.test:
Diffstat (limited to 'tests/io.test')
-rw-r--r-- | tests/io.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/io.test b/tests/io.test index 367f0e1..a2aaf7f 100644 --- a/tests/io.test +++ b/tests/io.test @@ -13,7 +13,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.80.2.11 2008/05/26 18:27:53 hobbs Exp $ +# RCS: @(#) $Id: io.test,v 1.80.2.12 2008/06/20 19:23:26 dgp Exp $ if {[catch {package require tcltest 2}]} { puts stderr "Skipping tests in [info script]. tcltest 2 required." @@ -7698,8 +7698,8 @@ test io-73.1 {channel Tcl_Obj SetChannelFromAny} {} { # ### ### ### ######### ######### ######### # cleanup -foreach file [list fooBar longfile script output test1 pipe my_script foo \ - bar test2 test3 cat stdout kyrillic.txt utf8-fcopy.txt utf8-rp.txt] { +foreach file [list fooBar longfile script output test1 pipe my_script \ + test2 test3 cat stdout kyrillic.txt utf8-fcopy.txt utf8-rp.txt] { removeFile $file } cleanupTests |