diff options
author | dgp <dgp@users.sourceforge.net> | 2013-09-05 12:31:46 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2013-09-05 12:31:46 (GMT) |
commit | 829487df7256479f7042811865db78b33f6a89d3 (patch) | |
tree | b082adbabe0891b51eda8c866612fef1780ef63f /tests | |
parent | 0a973a55fed4b9cba1558fc7c93d412665f7063c (diff) | |
parent | bfee748b41a556c2c213d22b99ce12b156acb1d8 (diff) | |
download | tcl-829487df7256479f7042811865db78b33f6a89d3.zip tcl-829487df7256479f7042811865db78b33f6a89d3.tar.gz tcl-829487df7256479f7042811865db78b33f6a89d3.tar.bz2 |
[010f4162ef] Repair effect of trace errors on -errorinfo and -errorstack.mig_review
Diffstat (limited to 'tests')
-rw-r--r-- | tests/error.test | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/error.test b/tests/error.test index 06f8eca..0de644c 100644 --- a/tests/error.test +++ b/tests/error.test @@ -182,6 +182,16 @@ test error-4.7 {errorstack via options dict } -body { catch {f 12} m d dict get $d -errorstack } -match glob -result {INNER * CALL {g 1212} CALL {f 12} UP 1} +test error-4.8 {errorstack from exec traces} -body { + proc foo args {} + proc goo {} foo + trace add execution foo enter {error bar;#} + catch goo m d + dict get $d -errorstack +} -cleanup { + rename goo {}; rename foo {} + unset -nocomplain m d +} -result {INNER {error bar} CALL goo UP 1} # Errors in error command itself |