diff options
author | andreas_kupries <akupries@shaw.ca> | 2007-11-14 19:53:26 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2007-11-14 19:53:26 (GMT) |
commit | 9bdde7aa4d7b94e1801005fcc63f1fe9953d216a (patch) | |
tree | 2ee64d903f977e66a96ac59769b7a3ce4e8b00d6 /tests/io.test | |
parent | ee7263e60a62d54b28a593d5e36927943222c9e2 (diff) | |
download | tcl-9bdde7aa4d7b94e1801005fcc63f1fe9953d216a.zip tcl-9bdde7aa4d7b94e1801005fcc63f1fe9953d216a.tar.gz tcl-9bdde7aa4d7b94e1801005fcc63f1fe9953d216a.tar.bz2 |
* tests/chanio.test: New file. This is essentially a duplicate of
'io.test', with all channel commands converted to their 'chan
xxx' notation.
* tests/io.test: Fixed typo in test description.
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 588002e..38c25da 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.77 2007/10/15 21:27:50 dgp Exp $ +# RCS: @(#) $Id: io.test,v 1.78 2007/11/14 19:53:27 andreas_kupries Exp $ if {[catch {package require tcltest 2}]} { puts stderr "Skipping tests in [info script]. tcltest 2 required." @@ -4352,7 +4352,7 @@ test io-34.15 {Tcl_Tell combined with seeking} { close $f1 list $c1 $c2 } {10 20} -test io-34.16 {Tcl_tell on pipe: always -1} {stdio openpipe} { +test io-34.16 {Tcl_Tell on pipe: always -1} {stdio openpipe} { set f1 [open "|[list [interpreter]]" r+] set c [tell $f1] close $f1 |