diff options
| author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2014-05-14 09:19:26 (GMT) |
|---|---|---|
| committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2014-05-14 09:19:26 (GMT) |
| commit | e1f7e78387100c22f3b1bf81e66223ad99210df5 (patch) | |
| tree | 5a4874e5bc940a1c05b4a2893067b40677be7ab0 | |
| parent | e2e85822fa2910ff5e61f4e6a32c60a4ea3add93 (diff) | |
| parent | af395991a7a2fdb4f70ef88a0dd3a2d29cc06846 (diff) | |
| download | tcl-e1f7e78387100c22f3b1bf81e66223ad99210df5.zip tcl-e1f7e78387100c22f3b1bf81e66223ad99210df5.tar.gz tcl-e1f7e78387100c22f3b1bf81e66223ad99210df5.tar.bz2 | |
Fix 3 test-cases which started failing on Windows
| -rw-r--r-- | tests/io.test | 3 |
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 |
