summaryrefslogtreecommitdiffstats
path: root/tests/namespace.test
diff options
context:
space:
mode:
authormsofer <msofer@noemail.net>2001-11-29 19:38:47 (GMT)
committermsofer <msofer@noemail.net>2001-11-29 19:38:47 (GMT)
commitade839f6d4f07cb9589861e55f967bf999d70747 (patch)
tree7c5b9560811df5bfe91fe4ee366ce22ad2cb79a0 /tests/namespace.test
parent5f9e5d110b7c5105dac119f71d3ac52e4cabbee9 (diff)
downloadtcl-ade839f6d4f07cb9589861e55f967bf999d70747.zip
tcl-ade839f6d4f07cb9589861e55f967bf999d70747.tar.gz
tcl-ade839f6d4f07cb9589861e55f967bf999d70747.tar.bz2
Modified test namespace-41.2, added 41.3
FossilOrigin-Name: 740493c6b750a2d19de481fe1933cb4519d31a52
Diffstat (limited to 'tests/namespace.test')
-rw-r--r--tests/namespace.test20
1 files changed, 17 insertions, 3 deletions
diff --git a/tests/namespace.test b/tests/namespace.test
index d30df8b..6c2ba40 100644
--- a/tests/namespace.test
+++ b/tests/namespace.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: namespace.test,v 1.19 2001/11/29 18:14:44 msofer Exp $
+# RCS: @(#) $Id: namespace.test,v 1.20 2001/11/29 19:38:48 msofer Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest
@@ -1155,6 +1155,20 @@ test namespace-41.1 {Shadowing byte-compiled commands, Bug: 231259} {
test namespace-41.2 {Shadowing byte-compiled commands, Bug: 231259} {
set res {}
+ namespace eval ns {}
+ proc ns::a {i} {
+ variable b
+ proc set args {return "New proc is called"}
+ return [set b $i]
+ }
+ ns::a 1
+ set res [ns::a 2]
+ namespace delete ns
+ set res
+} {New proc is called}
+
+test namespace-41.3 {Shadowing byte-compiled commands, Bug: 231259} {knownbug} {
+ set res {}
namespace eval ns {
variable b 0
}
@@ -1165,10 +1179,10 @@ test namespace-41.2 {Shadowing byte-compiled commands, Bug: 231259} {
return [set b $i]
}
- set res [list [ns::a 1] [ns::a 2] $ns::b]
+ set res [list [ns::a 1] $ns::b]
namespace delete ns
set res
-} {1 {New proc is called} 1}
+} {{New proc is called} 0}
# cleanup
catch {rename cmd1 {}}