summaryrefslogtreecommitdiffstats
path: root/tests/var.test
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2001-11-09 23:06:04 (GMT)
committerdgp <dgp@users.sourceforge.net>2001-11-09 23:06:04 (GMT)
commit6458b68fec3fa182b9c76b77efd135f7a2924b93 (patch)
tree012268e5787a44230c1be5af754701e4f9152a3a /tests/var.test
parentdee3e08e2b7e06d56d799d4aa5a9cb1b25ca1e8c (diff)
downloadtcl-6458b68fec3fa182b9c76b77efd135f7a2924b93.zip
tcl-6458b68fec3fa182b9c76b77efd135f7a2924b93.tar.gz
tcl-6458b68fec3fa182b9c76b77efd135f7a2924b93.tar.bz2
* tests/var.test:
* generic/tclVar.c: Corrected bug in [global] when dealing with variable names matching :*. [Bug 480176]
Diffstat (limited to 'tests/var.test')
-rw-r--r--tests/var.test12
1 files changed, 11 insertions, 1 deletions
diff --git a/tests/var.test b/tests/var.test
index cb2d093..916b9b4 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.17 2001/07/04 00:55:08 hobbs Exp $
+# RCS: @(#) $Id: var.test,v 1.18 2001/11/09 23:06:04 dgp Exp $
#
if {[lsearch [namespace children] ::tcltest] == -1} {
@@ -327,6 +327,16 @@ test var-6.3 {Tcl_GlobalObjCmd, variable named {} qualified by a namespace name}
}
p
} {24}
+test var-6.4 {Tcl_GlobalObjCmd, variable name matching :*} {
+ # Test for Tcl Bug 480176
+ set :v broken
+ proc p {} {
+ global :v
+ set :v fixed
+ }
+ p
+ set :v
+} {fixed}
test var-7.1 {Tcl_VariableObjCmd, create and initialize one new ns variable} {
catch {namespace delete test_ns_var}