diff options
author | andreas_kupries <akupries@shaw.ca> | 2008-04-09 19:51:10 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2008-04-09 19:51:10 (GMT) |
commit | 5bb416fbb1587d4057e135ae6e2455483e4e5576 (patch) | |
tree | c9ab023b912479a2f603c534fa317baa97432eff /tests/io.test | |
parent | 33d842cc1b098e34a75f00d74b2c30bc557301f0 (diff) | |
download | tcl-5bb416fbb1587d4057e135ae6e2455483e4e5576.zip tcl-5bb416fbb1587d4057e135ae6e2455483e4e5576.tar.gz tcl-5bb416fbb1587d4057e135ae6e2455483e4e5576.tar.bz2 |
* tests/chanio.test (chan-io-52.5): Removed '-size -1' from test,
* tests/io.test (io-52.5): does not seem to have any bearing, and
was an illegal value.
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 3caecc3..45e7338 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.6 2008/04/08 23:41:20 andreas_kupries Exp $ +# RCS: @(#) $Id: io.test,v 1.80.2.7 2008/04/09 19:51:12 andreas_kupries Exp $ if {[catch {package require tcltest 2}]} { puts stderr "Skipping tests in [info script]. tcltest 2 required." @@ -6547,7 +6547,7 @@ test io-52.5 {TclCopyChannel} {fcopy} { set f2 [open $path(test1) w] fconfigure $f1 -translation lf -blocking 0 fconfigure $f2 -translation lf -blocking 0 - fcopy $f1 $f2 -size -1 + fcopy $f1 $f2 ;#-size -1 set result [list [fconfigure $f1 -blocking] [fconfigure $f2 -blocking]] close $f1 close $f2 |