summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/var.test16
1 files changed, 15 insertions, 1 deletions
diff --git a/tests/var.test b/tests/var.test
index c8e57d8..2f0c1df 100644
--- a/tests/var.test
+++ b/tests/var.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: var.test,v 1.20.2.1 2003/03/24 00:55:16 msofer Exp $
+# RCS: @(#) $Id: var.test,v 1.20.2.2 2003/05/12 17:31:51 msofer Exp $
#
if {[lsearch [namespace children] ::tcltest] == -1} {
@@ -680,6 +680,20 @@ test var-14.1 {array names syntax} -body {
array names foo bar baz snafu
} -returnCodes 1 -match glob -result *
+test var-15.1 {segfault in [unset], [Bug 735335]} {
+ proc A { name } {
+ upvar $name var
+ set var $name
+ }
+ #
+ # Note that the variable name has to be
+ # unused previously for the segfault to
+ # be triggered.
+ #
+ namespace eval test A useSomeUnlikelyNameHere
+ namespace eval test unset useSomeUnlikelyNameHere
+} {}
+
catch {namespace delete ns}
catch {unset arr}
catch {unset v}