diff options
author | dgp <dgp@users.sourceforge.net> | 2008-08-04 04:49:23 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-08-04 04:49:23 (GMT) |
commit | 7afb51929c36eb56d586471d1411586a7f3c2a6e (patch) | |
tree | 290eef4e0202502bb182dd21aac070691b6f212e /tests | |
parent | 7d4f17d0447b1a63cf5c5a22a4d5e601c2221626 (diff) | |
download | tcl-7afb51929c36eb56d586471d1411586a7f3c2a6e.zip tcl-7afb51929c36eb56d586471d1411586a7f3c2a6e.tar.gz tcl-7afb51929c36eb56d586471d1411586a7f3c2a6e.tar.bz2 |
* generic/tclExecute.c: Stopped faulty double-logging of errors to
* tests/execute.test: stack trace when a compile epoch bump triggers
fallback to direct evaluation of commands in a compiled script.
[Bug 2037338]
Diffstat (limited to 'tests')
-rw-r--r-- | tests/execute.test | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/tests/execute.test b/tests/execute.test index a43e8e6..6c34dc1 100644 --- a/tests/execute.test +++ b/tests/execute.test @@ -14,7 +14,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: execute.test,v 1.27 2008/03/07 19:04:10 dgp Exp $ +# RCS: @(#) $Id: execute.test,v 1.28 2008/08/04 04:49:24 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -937,6 +937,27 @@ test execute-8.3 {Stack restoration} -body { interp recursionlimit {} $limit } -result {too many nested evaluations (infinite loop?)} +test execute-8.4 {Compile epoch bump effect on stack trace} -setup { + proc foo {} { + error bar + } + proc FOO {} { + catch {error bar} m o + rename ::set ::dummy + rename ::dummy ::set + return -options $o $m + } +} -body { + catch foo m o + set stack1 [dict get $o -errorinfo] + catch FOO m o + set stack2 [string map {FOO foo} [dict get $o -errorinfo]] + expr {$stack1 eq $stack2 ? {} : "These differ:\n$stack1\n$stack2"} +} -cleanup { + rename foo {} + rename FOO {} +} -result {} + test execute-9.1 {Interp result resetting [Bug 1522803]} { set c 0 catch { |