summaryrefslogtreecommitdiffstats
path: root/tests/info.test
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2004-11-24 19:28:08 (GMT)
committerdgp <dgp@users.sourceforge.net>2004-11-24 19:28:08 (GMT)
commit365126d4a4f8facef8165e398eb97402b286cc16 (patch)
tree450281e1b7e656ddb6d2b8570484ab4ab616c2d1 /tests/info.test
parentdcc1ed1129283a3f510297869024d755b7a2c17a (diff)
downloadtcl-365126d4a4f8facef8165e398eb97402b286cc16.zip
tcl-365126d4a4f8facef8165e398eb97402b286cc16.tar.gz
tcl-365126d4a4f8facef8165e398eb97402b286cc16.tar.bz2
* generic/tclCmdIL.c (InfoVarsCmd): Corrected segfault in new
* tests/info.test (info-19.6): trivial matching branch [Bug 1072654]
Diffstat (limited to 'tests/info.test')
-rw-r--r--tests/info.test10
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/info.test b/tests/info.test
index 27e6edc..0f65324 100644
--- a/tests/info.test
+++ b/tests/info.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: info.test,v 1.24.2.2 2004/10/31 16:43:30 dkf Exp $
+# RCS: @(#) $Id: info.test,v 1.24.2.3 2004/11/24 19:28:13 dgp Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest
@@ -608,6 +608,14 @@ test info-19.5 {info vars with temporary variables} {
}
t1
} {a}
+test info-19.6 {info vars: Bug 1072654} -setup {
+ namespace eval :: unset -nocomplain foo
+ catch {namespace delete x}
+} -body {
+ namespace eval x info vars foo
+} -cleanup {
+ namespace delete x
+} -result {}
# Check whether the extra testing functions are defined...
if {([catch {expr T1()} msg] == 1) && ($msg == {unknown math function "T1"})} {