summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2013-09-02 18:47:07 (GMT)
committerdgp <dgp@users.sourceforge.net>2013-09-02 18:47:07 (GMT)
commit2c3dbea378135685d72d688a6ee0fffe633d5376 (patch)
tree27a8b5d15d20dd51cf3d1104f7512dc8638602fc /tests
parent8520e69f3213d9c34e39b16438ff5933e874a320 (diff)
downloadtcl-2c3dbea378135685d72d688a6ee0fffe633d5376.zip
tcl-2c3dbea378135685d72d688a6ee0fffe633d5376.tar.gz
tcl-2c3dbea378135685d72d688a6ee0fffe633d5376.tar.bz2
Add test and improve errorInfo.
Diffstat (limited to 'tests')
-rw-r--r--tests/error.test10
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