diff options
author | rjohnson <rjohnson> | 1998-10-14 21:12:09 (GMT) |
---|---|---|
committer | rjohnson <rjohnson> | 1998-10-14 21:12:09 (GMT) |
commit | af8a60c77323b0eeb26488d384430e2a95a17623 (patch) | |
tree | a0b3e9cad0d6e7ea49f0c24dfd8b5587d0e57887 /tests | |
parent | a9c63f1a5538497bd1f1bac4aa1ba50129427aea (diff) | |
download | tcl-af8a60c77323b0eeb26488d384430e2a95a17623.zip tcl-af8a60c77323b0eeb26488d384430e2a95a17623.tar.gz tcl-af8a60c77323b0eeb26488d384430e2a95a17623.tar.bz2 |
Added fix to list processing in tclNotify that could cause events to be dropped.
Added test to intetp test suite.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/interp.test | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/interp.test b/tests/interp.test index a4086a2..715154c 100644 --- a/tests/interp.test +++ b/tests/interp.test @@ -5,11 +5,12 @@ # generates output for errors. No output means no errors were found. # # Copyright (c) 1995-1996 Sun Microsystems, Inc. +# Copyright (c) 1998 by Scriptics Corporation. # # 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.3 1998/09/14 18:40:10 stanton Exp $ +# RCS: @(#) $Id: interp.test,v 1.4 1998/10/14 21:12:09 rjohnson Exp $ if {[string compare test [info procs test]] == 1} then {source defs} @@ -2250,8 +2251,15 @@ test interp-29.2 {recursion limit inheritance} { #test interp-29.1 {interp and stack (info level)} { #} {} +# End of stack-recursion tests } +# This test dumps core in Tcl 8.0.3! +#test interp-30.1 {deletion of aliases inside namespaces} { +# set i [interp create] +# $i alias ns::cmd list +# $i alias ns::cmd {} +#} {} foreach i [interp slaves] { interp delete $i |