summaryrefslogtreecommitdiffstats
path: root/tests/ioCmd.test
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2014-05-09 13:19:30 (GMT)
committerdgp <dgp@users.sourceforge.net>2014-05-09 13:19:30 (GMT)
commita84b51c1b4d6b6279e7ee1dbb533cc9b9dab6085 (patch)
tree5f3e8c4f2ade224a0ae31459b7b3561f00cfcaaf /tests/ioCmd.test
parent61c463f55f3324d94a9142319ccb1bfe535f196c (diff)
downloadtcl-a84b51c1b4d6b6279e7ee1dbb533cc9b9dab6085.zip
tcl-a84b51c1b4d6b6279e7ee1dbb533cc9b9dab6085.tar.gz
tcl-a84b51c1b4d6b6279e7ee1dbb533cc9b9dab6085.tar.bz2
Test iocmd-32.1 is not "impossible" but after writing it properly it
does segfault trying to use a deleted interp. Fixed.
Diffstat (limited to 'tests/ioCmd.test')
-rw-r--r--tests/ioCmd.test9
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/ioCmd.test b/tests/ioCmd.test
index bb133f9..5a76d48 100644
--- a/tests/ioCmd.test
+++ b/tests/ioCmd.test
@@ -2038,13 +2038,13 @@ test iocmd-32.1 {origin interpreter of moved channel destroyed during access} -m
proc foo {args} {
oninit; onfinal; track;
# destroy interpreter during channel access
- # Actually not possible for an interp to destroy itself.
- interp delete {}
- return}
+ suicide
+ }
set chan [chan create {r w} foo]
fconfigure $chan -buffering none
set chan
}]
+ interp alias $ida suicide {} interp delete $ida
# Move channel to 2nd thread.
interp eval $ida [list testchannel cut $chan]
@@ -2063,8 +2063,7 @@ test iocmd-32.1 {origin interpreter of moved channel destroyed during access} -m
set res
}]
set res
-} -constraints {testchannel impossible} \
- -result {Owner lost}
+} -constraints {testchannel} -result {Owner lost}
test iocmd-32.2 {delete interp of reflected chan} {
# Bug 3034840