summaryrefslogtreecommitdiffstats
path: root/tests/interp.test
diff options
context:
space:
mode:
authormsofer <msofer@noemail.net>2004-03-30 16:22:11 (GMT)
committermsofer <msofer@noemail.net>2004-03-30 16:22:11 (GMT)
commite6add907e070338483729037c546220550ca9e11 (patch)
tree513ad8ee17cc642e66403897bbb9188df51ee60b /tests/interp.test
parentae318d363e4d9b2e58028a49f792e7beb226dd93 (diff)
downloadtcl-e6add907e070338483729037c546220550ca9e11.zip
tcl-e6add907e070338483729037c546220550ca9e11.tar.gz
tcl-e6add907e070338483729037c546220550ca9e11.tar.bz2
* generic/tclCompile.c: New instruction code INST_START_CMD
* generic/tclCompile.h: that allows checking the bytecode's * generic/tclExecute.c: validity [Bug 729692] and the interp's * tests/interp.test (18.9): readyness [Bug 495830] before running * tests/proc.test (7.1): the command. It also changes the * tests/rename.test (6.1): mechanics of the async tests in TEBC, doing it now at command start instead of every 16 instructions. FossilOrigin-Name: f7f63d8e13b76d48c0ba10572aa88d8700415e7c
Diffstat (limited to 'tests/interp.test')
-rw-r--r--tests/interp.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/interp.test b/tests/interp.test
index 83356af..e6b2024 100644
--- a/tests/interp.test
+++ b/tests/interp.test
@@ -10,7 +10,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: interp.test,v 1.26 2004/03/17 18:14:17 das Exp $
+# RCS: @(#) $Id: interp.test,v 1.27 2004/03/30 16:22:22 msofer Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest 2.1
@@ -753,7 +753,7 @@ if {[info commands testinterpdelete] == ""} {
list [catch {a eval foo} msg] $msg
} {1 {attempt to call eval in deleted interpreter}}
}
-test interp-18.9 {eval in deleted interp, bug 495830} {knownBug} {
+test interp-18.9 {eval in deleted interp, bug 495830} {
interp create tst
interp alias tst suicide {} interp delete tst
list [catch {tst eval {suicide; set a 5}} msg] $msg