summaryrefslogtreecommitdiffstats
path: root/tests/io.test
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2014-05-14 09:19:26 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2014-05-14 09:19:26 (GMT)
commit8637f1738357b93644912a7f4c3f302828a4ea0c (patch)
tree5a4874e5bc940a1c05b4a2893067b40677be7ab0 /tests/io.test
parent999da42537dbc85056dca32fc14e5360cf2bfb04 (diff)
parent5e610145644e54a301c3f508b6c6fb4dcf95f7b6 (diff)
downloadtcl-8637f1738357b93644912a7f4c3f302828a4ea0c.zip
tcl-8637f1738357b93644912a7f4c3f302828a4ea0c.tar.gz
tcl-8637f1738357b93644912a7f4c3f302828a4ea0c.tar.bz2
Fix 3 test-cases which started failing on Windows
Diffstat (limited to 'tests/io.test')
-rw-r--r--tests/io.test3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/io.test b/tests/io.test
index d05b882..0b6736d 100644
--- a/tests/io.test
+++ b/tests/io.test
@@ -6849,6 +6849,7 @@ test io-52.12 {coverage of -translation auto} {
set in [open $path(test1)]
chan configure $in -buffersize 8
set out [open $path(test2) w]
+ chan configure $out -translation lf
fcopy $in $out
close $in
close $out
@@ -6863,6 +6864,7 @@ test io-52.13 {coverage of -translation cr} {
set in [open $path(test1)]
chan configure $in -buffersize 8 -translation cr
set out [open $path(test2) w]
+ chan configure $out -translation lf
fcopy $in $out
close $in
close $out
@@ -6877,6 +6879,7 @@ test io-52.14 {coverage of -translation crlf} {
set in [open $path(test1)]
chan configure $in -buffersize 8 -translation crlf
set out [open $path(test2) w]
+ chan configure $out -translation lf
fcopy $in $out
close $in
close $out