diff options
author | hobbs <hobbs> | 2002-03-04 22:00:38 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-03-04 22:00:38 (GMT) |
commit | 5a598af441f3863e58e7d6f31cb56421774d59a6 (patch) | |
tree | c77eaa3f737bd87747c287a7ad6f6a2770bcc2d6 /tests/io.test | |
parent | 1c18b5b6965b64591b52b118d863cb8e109fb8a1 (diff) | |
download | tcl-5a598af441f3863e58e7d6f31cb56421774d59a6.zip tcl-5a598af441f3863e58e7d6f31cb56421774d59a6.tar.gz tcl-5a598af441f3863e58e7d6f31cb56421774d59a6.tar.bz2 |
* tests/io.test:
* tests/encoding.test: corrected iso2022 encoding results.
added encoding-24.*
* generic/tclEncoding.c (EscapeFromUtfProc): corrected output of
escape codes as per RFC 1468. [Patch #474358] (taguchi)
(TclFinalizeEncodingSubsystem): corrected potential double-free
when encodings were finalized on exit. [Bug #219314, #524674]
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 43c4072..d3d167f 100644 --- a/tests/io.test +++ b/tests/io.test @@ -12,7 +12,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.27 2002/03/02 04:57:29 hobbs Exp $ +# RCS: @(#) $Id: io.test,v 1.28 2002/03/04 22:00:40 hobbs Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -101,7 +101,7 @@ test io-1.8 {Tcl_WriteChars: WriteChars} { puts -nonewline $f [format %s%c [string repeat " " 4] 12399] close $f contents test2 -} "\x1b(B \x1b\$B\$O" +} " \x1b\$B\$O\x1b(B" test io-2.1 {WriteBytes} { # loop until all bytes are written |