diff options
author | andreas_kupries <akupries@shaw.ca> | 2008-06-06 19:46:35 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2008-06-06 19:46:35 (GMT) |
commit | 17aeda99fb77f6fa2cd10e1dbc86bc85e57fe242 (patch) | |
tree | 96af59b1ecf59bdc3c1c967f9d92698f55565436 /tests/chan.test | |
parent | a916d8993dbe62acec6ca7baf3bcf33ce5778a7f (diff) | |
download | tcl-17aeda99fb77f6fa2cd10e1dbc86bc85e57fe242.zip tcl-17aeda99fb77f6fa2cd10e1dbc86bc85e57fe242.tar.gz tcl-17aeda99fb77f6fa2cd10e1dbc86bc85e57fe242.tar.bz2 |
TIP #230 IMPLEMENTATION
* generic/tclIOCmd.c: Integration of transform commands into 'chan' ensemble.
* generic/tclInt.h: Definitions of the transform commands.
* generic/tclIORTrans.c: Implementation of the reflection transforms.
* tests/chan.test: Tests updated for new sub-commands of 'chan'.
* tests/ioCmd.test: Tests updated for new sub-commands of 'chan'.
* tests/ioTrans.test: Whole new set of tests for the reflection transform.
* unix/Makefile.in: Integration of new files into build rules.
* win/Makefile.in: Integration of new files into build rules.
* win/makefile.vc: Integration of new files into build rules.
NOTE: The file 'tclIORTrans.c' has a lot of code in common with
the file 'tclIORChan.c', as that made it much easier to
develop the reference implementation as a separate
module. Now that the transforms have been committed the one
thing left to do is to go over both modules and see which of
the common parts we can factor out and share.
Diffstat (limited to 'tests/chan.test')
-rw-r--r-- | tests/chan.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/chan.test b/tests/chan.test index eb09fd7..72eccbb 100644 --- a/tests/chan.test +++ b/tests/chan.test @@ -7,7 +7,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: chan.test,v 1.11 2007/12/13 15:26:04 dgp Exp $ +# RCS: @(#) $Id: chan.test,v 1.12 2008/06/06 19:46:38 andreas_kupries Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -24,7 +24,7 @@ test chan-1.1 {chan command general syntax} -body { } -returnCodes error -result "wrong # args: should be \"chan subcommand ?argument ...?\"" test chan-1.2 {chan command general syntax} -body { chan FOOBAR -} -returnCodes error -result "unknown or ambiguous subcommand \"FOOBAR\": must be blocked, close, configure, copy, create, eof, event, flush, gets, names, pending, postevent, puts, read, seek, tell, or truncate" +} -returnCodes error -result "unknown or ambiguous subcommand \"FOOBAR\": must be blocked, close, configure, copy, create, eof, event, flush, gets, names, pending, pop, postevent, push, puts, read, seek, tell, or truncate" test chan-2.1 {chan command: blocked subcommand} -body { chan blocked foo bar |