Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch apn-bigdata-tests Through [88c847a297] Excluding Merge-Ins
This is equivalent to a diff from f505b17748 to 88c847a297
|
2023-04-04
| ||
| 17:16 | Some very initial tests for large data check-in: 3dfd0e8214 user: apnadkarni tags: apn-bigdata-tests | |
| 17:14 | Start on tests for large data check-in: 88c847a297 user: apnadkarni tags: apn-bigdata-tests | |
|
2023-04-03
| ||
| 17:13 | Fix for [9ca87e6286262a62], sync fcopy buffers input in ReadChars(). check-in: e08c4afb53 user: pooryorick tags: trunk, main | |
| 16:15 | merge trunk check-in: 9b9daa251b user: dgp tags: dgp-refactor | |
| 14:41 | merge trunk check-in: e4ee47b22d user: dgp tags: novem | |
| 14:34 | merge trunk check-in: aa23225fa6 user: dgp tags: core-9-0-b1-rc | |
|
2023-04-02
| ||
| 13:23 | Bug [7e3f26c748] - TCL_MEM_DEBUG false positive check-in: f505b17748 user: apnadkarni tags: trunk, main | |
|
2023-04-01
| ||
| 14:55 | Merge 8.7 check-in: 48ba3c7b64 user: jan.nijtmans tags: trunk, main | |
Changes to generic/tclTestObj.c.
| ︙ | ︙ | |||
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
#ifdef TCL_WITH_EXTERNAL_TOMMATH
# include "tommath.h"
#else
# include "tclTomMath.h"
#endif
#include "tclStringRep.h"
/*
* Forward declarations for functions defined later in this file:
*/
static int CheckIfVarUnset(Tcl_Interp *interp, Tcl_Obj **varPtr, size_t varIndex);
static int GetVariableIndex(Tcl_Interp *interp,
Tcl_Obj *obj, size_t *indexPtr);
static void SetVarToObj(Tcl_Obj **varPtr, size_t varIndex, Tcl_Obj *objPtr);
static Tcl_ObjCmdProc TestbignumobjCmd;
static Tcl_ObjCmdProc TestbooleanobjCmd;
static Tcl_ObjCmdProc TestdoubleobjCmd;
static Tcl_ObjCmdProc TestindexobjCmd;
static Tcl_ObjCmdProc TestintobjCmd;
static Tcl_ObjCmdProc TestlistobjCmd;
static Tcl_ObjCmdProc TestobjCmd;
static Tcl_ObjCmdProc TeststringobjCmd;
#define VARPTR_KEY "TCLOBJTEST_VARPTR"
#define NUMBER_OF_OBJECT_VARS 20
static void VarPtrDeleteProc(void *clientData, TCL_UNUSED(Tcl_Interp *))
{
int i;
| > > | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
#ifdef TCL_WITH_EXTERNAL_TOMMATH
# include "tommath.h"
#else
# include "tclTomMath.h"
#endif
#include "tclStringRep.h"
#include <assert.h>
/*
* Forward declarations for functions defined later in this file:
*/
static int CheckIfVarUnset(Tcl_Interp *interp, Tcl_Obj **varPtr, size_t varIndex);
static int GetVariableIndex(Tcl_Interp *interp,
Tcl_Obj *obj, size_t *indexPtr);
static void SetVarToObj(Tcl_Obj **varPtr, size_t varIndex, Tcl_Obj *objPtr);
static Tcl_ObjCmdProc TestbignumobjCmd;
static Tcl_ObjCmdProc TestbooleanobjCmd;
static Tcl_ObjCmdProc TestdoubleobjCmd;
static Tcl_ObjCmdProc TestindexobjCmd;
static Tcl_ObjCmdProc TestintobjCmd;
static Tcl_ObjCmdProc TestlistobjCmd;
static Tcl_ObjCmdProc TestobjCmd;
static Tcl_ObjCmdProc TeststringobjCmd;
static Tcl_ObjCmdProc TestbigdataCmd;
#define VARPTR_KEY "TCLOBJTEST_VARPTR"
#define NUMBER_OF_OBJECT_VARS 20
static void VarPtrDeleteProc(void *clientData, TCL_UNUSED(Tcl_Interp *))
{
int i;
|
| ︙ | ︙ | |||
112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
NULL, NULL);
Tcl_CreateObjCommand(interp, "testindexobj", TestindexobjCmd,
NULL, NULL);
Tcl_CreateObjCommand(interp, "testlistobj", TestlistobjCmd,
NULL, NULL);
Tcl_CreateObjCommand(interp, "testobj", TestobjCmd, NULL, NULL);
Tcl_CreateObjCommand(interp, "teststringobj", TeststringobjCmd,
NULL, NULL);
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
| > > | 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
NULL, NULL);
Tcl_CreateObjCommand(interp, "testindexobj", TestindexobjCmd,
NULL, NULL);
Tcl_CreateObjCommand(interp, "testlistobj", TestlistobjCmd,
NULL, NULL);
Tcl_CreateObjCommand(interp, "testobj", TestobjCmd, NULL, NULL);
Tcl_CreateObjCommand(interp, "teststringobj", TeststringobjCmd,
NULL, NULL);
Tcl_CreateObjCommand(interp, "testbigdata", TestbigdataCmd,
NULL, NULL);
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
|
| ︙ | ︙ | |||
1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 |
Tcl_Free(unicode);
break;
}
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* SetVarToObj --
*
* Utility routine to assign a Tcl_Obj* to a test variable. The
* Tcl_Obj* can be NULL.
| > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 |
Tcl_Free(unicode);
break;
}
return TCL_OK;
}
/*
*------------------------------------------------------------------------
*
* TestbigdataCmd --
*
* Implements the Tcl command testbigdata
* testbigdata string ?LEN? ?SPLIT?
* testbigdata bytearray ?LEN? ?SPLIT?
* If no arguments given, returns the pattern used to generate strings.
* If SPLIT is specified, the character at that position is set to "X".
*
* Results:
* TCL_OK - Success.
* TCL_ERROR - Error.
*
* Side effects:
* Interpreter result holds result or error message.
*
*------------------------------------------------------------------------
*/
static int
TestbigdataCmd (
ClientData notUsed,
Tcl_Interp *interp, /* Current interpreter. */
int objc, /* Number of arguments. */
Tcl_Obj *const objv[]) /* Argument objects. */
{
static const char *const subcmds[] = {
"string", "bytearray", "list", NULL
};
enum options {
BIGDATA_STRING, BIGDATA_BYTEARRAY, BIGDATA_LIST
} idx;
char *s;
unsigned char *p;
Tcl_WideInt i, len, split;
Tcl_DString ds;
Tcl_Obj *objPtr;
#define PATTERN_LEN 10
Tcl_Obj *patternObjs[PATTERN_LEN];
if (objc < 2 || objc > 4) {
Tcl_WrongNumArgs(interp, 1, objv, "command ?len?");
return TCL_ERROR;
}
if (Tcl_GetIndexFromObj(interp, objv[1], subcmds, "option", 0,
&idx) != TCL_OK) {
return TCL_ERROR;
}
split = -1;
if (objc == 2) {
len = PATTERN_LEN;
} else {
if (Tcl_GetWideIntFromObj(interp, objv[2], &len) != TCL_OK) {
return TCL_ERROR;
}
if (objc == 4) {
if (Tcl_GetWideIntFromObj(interp, objv[3], &split) != TCL_OK) {
return TCL_ERROR;
}
if (split >= len) {
split = len - 1; /* Last position */
}
}
}
/* Need one byte for nul terminator */
Tcl_WideInt limit =
sizeof(Tcl_Size) == sizeof(Tcl_WideInt) ? WIDE_MAX-1 : INT_MAX-1;
if (len < 0 || len > limit) {
Tcl_SetObjResult(
interp,
Tcl_ObjPrintf(
"%s is greater than max permitted length %" TCL_LL_MODIFIER "d",
Tcl_GetString(objv[2]),
limit));
return TCL_ERROR;
}
switch (idx) {
case BIGDATA_STRING:
Tcl_DStringInit(&ds);
Tcl_DStringSetLength(&ds, len);/* Also stores \0 at index len+1 */
s = Tcl_DStringValue(&ds);
for (i = 0; i < len; ++i) {
s[i] = '0' + (i % PATTERN_LEN);
}
if (split >= 0) {
assert(split < len);
s[split] = 'X';
}
Tcl_DStringResult(interp, &ds);
break;
case BIGDATA_BYTEARRAY:
objPtr = Tcl_NewByteArrayObj(NULL, len);
p = Tcl_GetByteArrayFromObj(objPtr, &len);
for (i = 0; i < len; ++i) {
p[i] = '0' + (i % PATTERN_LEN);
}
if (split >= 0) {
assert(split < len);
p[split] = 'X';
}
Tcl_SetObjResult(interp, objPtr);
break;
case BIGDATA_LIST:
for (i = 0; i < PATTERN_LEN; ++i) {
patternObjs[i] = Tcl_NewIntObj(i);
Tcl_IncrRefCount(patternObjs[i]);
}
objPtr = Tcl_NewListObj(len, NULL);
for (i = 0; i < len; ++i) {
Tcl_ListObjAppendElement(
interp, objPtr, patternObjs[i % PATTERN_LEN]);
}
if (split >= 0) {
assert(split < len);
Tcl_Obj *splitMarker = Tcl_NewStringObj("X", 1);
Tcl_ListObjReplace(interp, objPtr, split, 1, 1, &splitMarker);
}
for (i = 0; i < PATTERN_LEN; ++i) {
patternObjs[i] = Tcl_NewIntObj(i);
Tcl_DecrRefCount(patternObjs[i]);
}
Tcl_SetObjResult(interp, objPtr);
break;
}
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* SetVarToObj --
*
* Utility routine to assign a Tcl_Obj* to a test variable. The
* Tcl_Obj* can be NULL.
|
| ︙ | ︙ |