summaryrefslogtreecommitdiffstats
path: root/tests/chanio.test
diff options
context:
space:
mode:
authornijtmans <nijtmans>2011-01-17 12:34:43 (GMT)
committernijtmans <nijtmans>2011-01-17 12:34:43 (GMT)
commitc19c3f2d6de6320a78e1a5fc90c832a6247f8f9c (patch)
treeeb3bdd86b4865143cbbb942e9c4126b8dfb2ba89 /tests/chanio.test
parent0389645b34a0b9251ca8ea19bce38a41501cc991 (diff)
downloadtcl-c19c3f2d6de6320a78e1a5fc90c832a6247f8f9c.zip
tcl-c19c3f2d6de6320a78e1a5fc90c832a6247f8f9c.tar.gz
tcl-c19c3f2d6de6320a78e1a5fc90c832a6247f8f9c.tar.bz2
[Bug 3148192]: Commands "read/puts" incorrectly interpret parameters.
Improved error-message regarding legacy form.
Diffstat (limited to 'tests/chanio.test')
-rw-r--r--tests/chanio.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/chanio.test b/tests/chanio.test
index ce87e94..bcd24fe 100644
--- a/tests/chanio.test
+++ b/tests/chanio.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: chanio.test,v 1.3.2.11 2008/06/20 19:23:26 dgp Exp $
+# RCS: @(#) $Id: chanio.test,v 1.3.2.12 2011/01/17 12:34:43 nijtmans Exp $
if {[catch {package require tcltest 2}]} {
chan puts stderr "Skipping tests in [info script]. tcltest 2 required."
@@ -3858,7 +3858,7 @@ test chan-io-32.3 {Tcl_Read, negative byte count} {
set l [list [catch {chan read $f -1} msg] $msg]
chan close $f
set l
-} {1 {bad argument "-1": should be "nonewline"}}
+} {1 {expected non-negative integer but got "-1"}}
test chan-io-32.4 {Tcl_Read, positive byte count} {
set f [open $path(longfile) r]
set x [chan read $f 1024]