diff options
author | dgp <dgp@users.sourceforge.net> | 2003-09-24 02:07:52 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2003-09-24 02:07:52 (GMT) |
commit | cdbe234ea470e973dacf232bdd45b3a3c820d9ac (patch) | |
tree | 941a167a7b1948f0c0717e66bf524cc088a4f7cd /tests/trace.test | |
parent | 380500c89f32e25cb0b4c742690cdcbf7c1fe6bb (diff) | |
download | tcl-cdbe234ea470e973dacf232bdd45b3a3c820d9ac.zip tcl-cdbe234ea470e973dacf232bdd45b3a3c820d9ac.tar.gz tcl-cdbe234ea470e973dacf232bdd45b3a3c820d9ac.tar.bz2 |
* tests/trace.test (trace-31,32-*): Added tests for [Bug 807243]
and [Bug 811483].
Diffstat (limited to 'tests/trace.test')
-rw-r--r-- | tests/trace.test | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/tests/trace.test b/tests/trace.test index 6f3dd9c..f1556fa 100644 --- a/tests/trace.test +++ b/tests/trace.test @@ -11,7 +11,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: trace.test,v 1.29 2003/06/25 23:02:11 dkf Exp $ +# RCS: @(#) $Id: trace.test,v 1.30 2003/09/24 02:07:52 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -2152,6 +2152,39 @@ test trace-30.1 {Tcl_DeleteTrace} {emptyTest} { # the above tests have tested Tcl_DeleteTrace } {} +test trace-31.1 {command and execution traces shared struct} { + # Tcl Bug 807243 + proc foo {} {} + trace add command foo delete foo + trace add execution foo enter foo + set result [trace info command foo] + trace remove command foo delete foo + trace remove execution foo enter foo + rename foo {} + set result +} [list [list delete foo]] +test trace-31.2 {command and execution traces shared struct} { + # Tcl Bug 807243 + proc foo {} {} + trace add command foo delete foo + trace add execution foo enter foo + set result [trace info execution foo] + trace remove command foo delete foo + trace remove execution foo enter foo + rename foo {} + set result +} [list [list enter foo]] + +test trace-32.1 {mystery memory corruption} knownBug { + # Tcl Bug 811483 + proc foo {} {} + trace add command foo delete foo + trace add execution foo enter foo + set result [trace info command foo] + rename foo {} + set result +} [list [list delete foo]] + # Delete procedures when done, so we don't clash with other tests # (e.g. foobar will clash with 'unknown' tests). catch {rename foobar {}} |