summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2022-10-17 10:49:43 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2022-10-17 10:49:43 (GMT)
commite50b4e4c5965bae47fc77840198c415d83302b44 (patch)
tree349a3683b10dffdd266c2113bb357c7140819eb8 /tests
parent6cda753ae057b0c4e0b485b64262b5d61de28334 (diff)
parenta11e803c73d6d21deac044f8ab5601a7a2e5a3bb (diff)
downloadtcl-e50b4e4c5965bae47fc77840198c415d83302b44.zip
tcl-e50b4e4c5965bae47fc77840198c415d83302b44.tar.gz
tcl-e50b4e4c5965bae47fc77840198c415d83302b44.tar.bz2
Merge 9.0. Change the default -eofchar on Windows
Diffstat (limited to 'tests')
-rw-r--r--tests/chanio.test2
-rw-r--r--tests/io.test2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/chanio.test b/tests/chanio.test
index f9d272a..2c1548d 100644
--- a/tests/chanio.test
+++ b/tests/chanio.test
@@ -1889,7 +1889,7 @@ test chan-io-20.2 {Tcl_CreateChannel: initial settings} -constraints {win} -body
list [chan configure $f -eofchar] [chan configure $f -translation]
} -cleanup {
chan close $f
-} -result [list [list \x1A ""] {auto crlf}]
+} -result {{{}} {auto crlf}}
test chan-io-20.3 {Tcl_CreateChannel: initial settings} -constraints {unix} -body {
set f [open $path(test1) w+]
list [chan configure $f -eofchar] [chan configure $f -translation]
diff --git a/tests/io.test b/tests/io.test
index 15ce577..1047376 100644
--- a/tests/io.test
+++ b/tests/io.test
@@ -2093,7 +2093,7 @@ test io-20.2 {Tcl_CreateChannel: initial settings} {win} {
set x [list [fconfigure $f -eofchar] [fconfigure $f -translation]]
close $f
set x
-} [list [list \x1A ""] {auto crlf}]
+} {{{}} {auto crlf}}
test io-20.3 {Tcl_CreateChannel: initial settings} {unix} {
set f [open $path(test1) w+]
set x [list [fconfigure $f -eofchar] [fconfigure $f -translation]]