diff options
author | hershey <hershey> | 1999-06-15 22:06:17 (GMT) |
---|---|---|
committer | hershey <hershey> | 1999-06-15 22:06:17 (GMT) |
commit | 1b1bab45a700c36f964cdbd1a79045e914e0aa96 (patch) | |
tree | fd497b035bc7c04b8ad71eadb4eef2f2f144244d /generic/tclTestObj.c | |
parent | 2008a70f51dba5c3a581c7498dd8762ad5d6d7ac (diff) | |
download | tcl-1b1bab45a700c36f964cdbd1a79045e914e0aa96.zip tcl-1b1bab45a700c36f964cdbd1a79045e914e0aa96.tar.gz tcl-1b1bab45a700c36f964cdbd1a79045e914e0aa96.tar.bz2 |
beefed up the string object tests
Diffstat (limited to 'generic/tclTestObj.c')
-rw-r--r-- | generic/tclTestObj.c | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/generic/tclTestObj.c b/generic/tclTestObj.c index 259fcbd..2733a8c 100644 --- a/generic/tclTestObj.c +++ b/generic/tclTestObj.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclTestObj.c,v 1.5 1999/06/15 03:14:45 hershey Exp $ + * RCS: @(#) $Id: tclTestObj.c,v 1.6 1999/06/15 22:06:17 hershey Exp $ */ #include "tclInt.h" @@ -883,7 +883,7 @@ TeststringobjCmd(clientData, interp, objc, objv) TestString *strPtr; static char *options[] = { "append", "appendstrings", "get", "get2", "length", "length2", - "set", "set2", "setlength", (char *) NULL + "set", "set2", "setlength", "ualloc", (char *) NULL }; if (objc < 3) { @@ -1032,6 +1032,19 @@ TeststringobjCmd(clientData, interp, objc, objv) Tcl_SetObjLength(varPtr[varIndex], length); } break; + case 9: /* ualloc */ + if (objc != 3) { + goto wrongNumArgs; + } + if (varPtr[varIndex] != NULL) { + strPtr = (TestString *) + (varPtr[varIndex])->internalRep.otherValuePtr; + length = (int) strPtr->uallocated; + } else { + length = -1; + } + Tcl_SetIntObj(Tcl_GetObjResult(interp), length); + break; } return TCL_OK; |