diff options
author | hobbs <hobbs> | 2008-05-26 18:26:15 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2008-05-26 18:26:15 (GMT) |
commit | 269e8a56f4faa3cd6efed39d7842bdfbc7445cac (patch) | |
tree | 144cb2abacb03f8c686c4c3d43d544a217406795 /tests | |
parent | 199e87f5e360b10f877d2830dc15ea969dad655b (diff) | |
download | tcl-269e8a56f4faa3cd6efed39d7842bdfbc7445cac.zip tcl-269e8a56f4faa3cd6efed39d7842bdfbc7445cac.tar.gz tcl-269e8a56f4faa3cd6efed39d7842bdfbc7445cac.tar.bz2 |
* tests/io.test (io-53.9): need to close chan before removing file.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/io.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/io.test b/tests/io.test index 9af72bd..2627140 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.40.2.21 2008/05/23 21:12:11 andreas_kupries Exp $ +# RCS: @(#) $Id: io.test,v 1.40.2.22 2008/05/26 18:26:15 hobbs Exp $ if {[catch {package require tcltest 2}]} { puts stderr "Skipping tests in [info script]. tcltest 2 required." @@ -7083,6 +7083,7 @@ test io-53.9 {CopyData: -size and event interaction, Bug 780533} -setup { close $pipe rename ::done {} after 1000 ;# Give Windows time to kill the process + catch {close $out} removeFile out removeFile err catch {unset ::forever} |