ftmemsim-valgrind/memcheck/tests/custom-overlap.c
Nicholas Nethercote 6fd1b000e4 Allow custom blocks to overlap with malloc blocks. Fixes bug 100628.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10765
2009-08-10 07:36:54 +00:00

29 lines
1.0 KiB
C

// Test for bug 100628: need to allow custom MALLOCLIKE blocks to overlap
// with normal malloc() blocks in leak-checking -- if it happens, we ignore
// the malloc() block during the leak check.
#include <stdlib.h>
#include "valgrind.h"
int main(void)
{
char* x;
// For this one, the first custom block overlaps exactly with the start of
// the malloc block.
x = malloc(1000);
VALGRIND_MALLOCLIKE_BLOCK(x, /*szB*/ 16, /*rzB*/0, /*isZeroed*/0);
VALGRIND_MALLOCLIKE_BLOCK(x+100, /*szB*/ 32, /*rzB*/0, /*isZeroed*/0);
VALGRIND_MALLOCLIKE_BLOCK(x+200, /*szB*/ 64, /*rzB*/0, /*isZeroed*/0);
VALGRIND_MALLOCLIKE_BLOCK(x+300, /*szB*/128, /*rzB*/0, /*isZeroed*/0);
// For this one, the first custom block does not overlap exactly with the
// start of the malloc block.
x = malloc(1000);
VALGRIND_MALLOCLIKE_BLOCK(x+100, /*szB*/ 32, /*rzB*/0, /*isZeroed*/0);
VALGRIND_MALLOCLIKE_BLOCK(x+200, /*szB*/ 64, /*rzB*/0, /*isZeroed*/0);
VALGRIND_MALLOCLIKE_BLOCK(x+300, /*szB*/128, /*rzB*/0, /*isZeroed*/0);
return 0;
}