diff options
Diffstat (limited to 'tests/obj.test')
-rw-r--r-- | tests/obj.test | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/obj.test b/tests/obj.test index 7ca3e8e..dfbad05 100644 --- a/tests/obj.test +++ b/tests/obj.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: obj.test,v 1.14 2005/05/10 18:35:22 kennykb Exp $ +# RCS: @(#) $Id: obj.test,v 1.15 2005/05/17 21:29:18 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -47,17 +47,19 @@ test obj-1.1 {Tcl_AppendAllObjTypes, and InitTypeTable, Tcl_RegisterObjType} tes set r 1 foreach {t} { {array search} + bignum boolean bytearray bytecode + cmdName + dict double end-offset - index int - list nsName - procbody + regexp string + wideInt } { set first [string first $t [testobj types]] set r [expr {$r && ($first != -1)}] |