diff options
| author | hobbs <hobbs> | 2008-05-26 18:28:47 (GMT) |
|---|---|---|
| committer | hobbs <hobbs> | 2008-05-26 18:28:47 (GMT) |
| commit | 4cf6524e20b6d68c8e559d5ffbc2d2e6201ece20 (patch) | |
| tree | 1429fe55c1616eda5dd6f5efc7a5f8bd12d79194 | |
| parent | eab543ad27575f117227f94782566bfc776712a0 (diff) | |
| download | tcl-4cf6524e20b6d68c8e559d5ffbc2d2e6201ece20.zip tcl-4cf6524e20b6d68c8e559d5ffbc2d2e6201ece20.tar.gz tcl-4cf6524e20b6d68c8e559d5ffbc2d2e6201ece20.tar.bz2 | |
(io-53.9): need to close chan before removing file
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | tests/io.test | 3 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2008-05-26 Jeff Hobbs <jeffh@ActiveState.com> + + * tests/io.test (io-53.9): need to close chan before removing file. + 2008-05-26 Donal K. Fellows <dkf@users.sf.net> * win/makefile.bc: Remove deprecated winhelp target. diff --git a/tests/io.test b/tests/io.test index 10115c1..274c736 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.89 2008/05/23 21:00:45 andreas_kupries Exp $ +# RCS: @(#) $Id: io.test,v 1.90 2008/05/26 18:28:47 hobbs Exp $ if {[catch {package require tcltest 2}]} { puts stderr "Skipping tests in [info script]. tcltest 2 required." @@ -7051,6 +7051,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} catch {removeFile out} catch {removeFile err} catch {unset ::forever} |
