summaryrefslogtreecommitdiffstats
path: root/tests/ioCmd.test
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-09-25 13:14:59 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-09-25 13:14:59 (GMT)
commit13f90df6597eb8749645582c67de29865ea50950 (patch)
tree575b1690679721d58e962d2c90a12bfbc7cfa184 /tests/ioCmd.test
parentb776295fc0380d1bc09f8b141128b06a7f331d18 (diff)
parent81bf9a79252bd863ce1ef2aa2c551a515c05e3f6 (diff)
downloadtcl-13f90df6597eb8749645582c67de29865ea50950.zip
tcl-13f90df6597eb8749645582c67de29865ea50950.tar.gz
tcl-13f90df6597eb8749645582c67de29865ea50950.tar.bz2
Merge 8.6
Diffstat (limited to 'tests/ioCmd.test')
-rw-r--r--tests/ioCmd.test7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/ioCmd.test b/tests/ioCmd.test
index 7f7a182..0e47d2f 100644
--- a/tests/ioCmd.test
+++ b/tests/ioCmd.test
@@ -25,7 +25,6 @@ package require tcltests
# Custom constraints used in this file
testConstraint testchannel [llength [info commands testchannel]]
-testConstraint knownMsvcBug [expr {![info exists ::env(TRAVIS_OS_NAME)] || ![string match windows $::env(TRAVIS_OS_NAME)]}]
#----------------------------------------------------------------------
@@ -811,7 +810,7 @@ test iocmd-21.19 {chan create, init failure -> no channel, no finalize} -match g
rename foo {}
set res
} -result {{} {initialize rc* {read write}} 1 {*all required methods*} {}}
-test iocmd-21.20 {Bug 88aef05cda} -constraints knownMsvcBug -setup {
+test iocmd-21.20 {Bug 88aef05cda} -setup {
proc foo {method chan args} {
switch -- $method blocking {
chan configure $chan -blocking [lindex $args 0]
@@ -825,11 +824,11 @@ test iocmd-21.20 {Bug 88aef05cda} -constraints knownMsvcBug -setup {
}
set ch [chan create {read write} foo]
} -body {
- list [catch {chan configure $ch -blocking 0} m] $m
+ chan configure $ch -blocking 0
} -cleanup {
close $ch
rename foo {}
-} -match glob -result {1 {*nested eval*}}
+} -match glob -returnCodes 1 -result {*(infinite loop?)*}
test iocmd-21.21 {[close] in [read] segfaults} -setup {
proc foo {method chan args} {
switch -- $method initialize {