diff options
Diffstat (limited to 'tests/info.test')
-rw-r--r-- | tests/info.test | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/tests/info.test b/tests/info.test index 1a4f1cd..d330ada 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.38 2006/10/24 23:13:07 msofer Exp $ +# RCS: @(#) $Id: info.test,v 1.39 2006/10/31 13:46:33 dkf Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -29,7 +29,6 @@ namespace eval test_ns_info1 { proc q {{y 27} {z {}}} {return "y=$y"} } - test info-1.1 {info args option} { proc t1 {a bbb c} {return foo} info args t1 @@ -357,7 +356,7 @@ test info-9.10 {info level option, namespaces} { namespace delete t set msg } {namespace eval t {info level 0}} -test info-9.11 {info level option, aliases} -setup { +test info-9.11 {info level option, aliases} -constraints knownBug -setup { proc w {x y z} {info level 0} interp alias {} a {} w a b } -body { @@ -366,7 +365,7 @@ test info-9.11 {info level option, aliases} -setup { rename a {} rename w {} } -result {a c} -test info-9.12 {info level option, ensembles} -setup { +test info-9.12 {info level option, ensembles} -constraints knownBug -setup { proc w {x y z} {info level 0} namespace ensemble create -command a -map {foo ::w} } -body { @@ -376,7 +375,6 @@ test info-9.12 {info level option, ensembles} -setup { rename w {} } -result {a foo 1 2 3} - set savedLibrary $tcl_library test info-10.1 {info library option} { list [catch {info library x} msg] $msg |