summaryrefslogtreecommitdiffstats
path: root/tests/io.test
diff options
context:
space:
mode:
authorandreas_kupries <akupries@shaw.ca>2008-04-09 19:49:07 (GMT)
committerandreas_kupries <akupries@shaw.ca>2008-04-09 19:49:07 (GMT)
commit2f4dbc92d9400613c34d96550cda0da27404b84d (patch)
tree0ff0832fafd59b21f33f434fd4967e7b59d69d08 /tests/io.test
parent9bb2ff4b525caf08e3d48cadac6631b5693687aa (diff)
downloadtcl-2f4dbc92d9400613c34d96550cda0da27404b84d.zip
tcl-2f4dbc92d9400613c34d96550cda0da27404b84d.tar.gz
tcl-2f4dbc92d9400613c34d96550cda0da27404b84d.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.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/io.test b/tests/io.test
index 084723a..908dae2 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.85 2008/04/08 23:16:00 das Exp $
+# RCS: @(#) $Id: io.test,v 1.86 2008/04/09 19:49:08 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