summaryrefslogtreecommitdiffstats
path: root/tests/info.test
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2016-06-17 00:53:04 (GMT)
committerdgp <dgp@users.sourceforge.net>2016-06-17 00:53:04 (GMT)
commit5f37ca27b1c063da4d683acdadc4ac1e458fa543 (patch)
treeedceb0c6951153cfff0e2f2ee9a653ecae86314e /tests/info.test
parentd5ee2656ca67c1e5b1bd7a57a84a51f9dc22bcca (diff)
parent8824470ed0704024b804da2d301cf0d05a63ee04 (diff)
downloadtcl-5f37ca27b1c063da4d683acdadc4ac1e458fa543.zip
tcl-5f37ca27b1c063da4d683acdadc4ac1e458fa543.tar.gz
tcl-5f37ca27b1c063da4d683acdadc4ac1e458fa543.tar.bz2
merge 8.6
Diffstat (limited to 'tests/info.test')
-rw-r--r--tests/info.test17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/info.test b/tests/info.test
index 3057dd2..e0fddb3 100644
--- a/tests/info.test
+++ b/tests/info.test
@@ -2398,6 +2398,23 @@ test info-33.35 {{*}, literal, simple, bytecompiled} -body {
# -------------------------------------------------------------------------
unset -nocomplain res
+test info-39.0 {Bug 4b61afd660} -setup {
+ proc probe {} {
+ return [dict get [info frame -1] line]
+ }
+ set body {
+ set cmd probe
+ $cmd
+ }
+ proc demo {} $body
+} -body {
+ demo
+} -cleanup {
+ unset -nocomplain body
+ rename demo {}
+ rename probe {}
+} -result 3
+
# cleanup
catch {namespace delete test_ns_info1 test_ns_info2}
::tcltest::cleanupTests