mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-08 22:42:04 -04:00
memory pool testing
This commit is contained in:
parent
213a9ec2ad
commit
bb3aa9b6eb
1 changed files with 120 additions and 0 deletions
120
bin/tests/mempool_test.c
Normal file
120
bin/tests/mempool_test.c
Normal file
|
|
@ -0,0 +1,120 @@
|
|||
/*
|
||||
* Copyright (C) 1998, 1999 Internet Software Consortium.
|
||||
*
|
||||
* Permission to use, copy, modify, and distribute this software for any
|
||||
* purpose with or without fee is hereby granted, provided that the above
|
||||
* copyright notice and this permission notice appear in all copies.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
|
||||
* ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
|
||||
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
|
||||
* CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
|
||||
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
||||
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
|
||||
* ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
||||
* SOFTWARE.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <isc/assertions.h>
|
||||
#include <isc/error.h>
|
||||
#include <isc/mem.h>
|
||||
#include <isc/result.h>
|
||||
|
||||
isc_mem_t *mctx;
|
||||
|
||||
int
|
||||
main(int argc, char *argv[])
|
||||
{
|
||||
void *items1[50];
|
||||
void *items2[50];
|
||||
void *tmp;
|
||||
isc_mempool_t *mp1, *mp2;
|
||||
unsigned int i, j;
|
||||
|
||||
mctx = NULL;
|
||||
RUNTIME_CHECK(isc_mem_create(0, 0, &mctx) == ISC_R_SUCCESS);
|
||||
|
||||
mp1 = NULL;
|
||||
RUNTIME_CHECK(isc_mempool_create(mctx, 24, &mp1) == ISC_R_SUCCESS);
|
||||
|
||||
mp2 = NULL;
|
||||
RUNTIME_CHECK(isc_mempool_create(mctx, 31, &mp2) == ISC_R_SUCCESS);
|
||||
|
||||
isc_mem_stats(mctx, stderr);
|
||||
|
||||
isc_mempool_setfreemax(mp1, 10);
|
||||
isc_mempool_setfillcount(mp1, 10);
|
||||
isc_mempool_setmaxalloc(mp1, 30);
|
||||
|
||||
/*
|
||||
* Allocate 30 items from the pool. This is our max.
|
||||
*/
|
||||
for (i = 0 ; i < 30 ; i++) {
|
||||
items1[i] = isc_mempool_get(mp1);
|
||||
RUNTIME_CHECK(items1[i] != NULL);
|
||||
}
|
||||
|
||||
/*
|
||||
* Try to allocate one more. This should fail.
|
||||
*/
|
||||
tmp = isc_mempool_get(mp1);
|
||||
RUNTIME_CHECK(tmp == NULL);
|
||||
|
||||
/*
|
||||
* Free the first 11 items. Verify that there are 10 free items on
|
||||
* the free list (which is our max).
|
||||
*/
|
||||
|
||||
for (i = 0 ; i < 11 ; i++) {
|
||||
isc_mempool_put(mp1, items1[i]);
|
||||
items1[i] = NULL;
|
||||
}
|
||||
|
||||
RUNTIME_CHECK(isc_mempool_getfreecount(mp1) == 10);
|
||||
RUNTIME_CHECK(isc_mempool_getallocated(mp1) == 19);
|
||||
|
||||
isc_mem_stats(mctx, stderr);
|
||||
|
||||
/*
|
||||
* Now, beat up on mp2 for a while. Allocate 50 items, then free
|
||||
* them, then allocate 50 more, etc.
|
||||
*/
|
||||
isc_mempool_setfreemax(mp2, 25);
|
||||
isc_mempool_setfillcount(mp2, 25);
|
||||
for (j = 0 ; j < 500000 ; j++) {
|
||||
for (i = 0 ; i < 50 ; i++) {
|
||||
items2[i] = isc_mempool_get(mp2);
|
||||
RUNTIME_CHECK(items2[i] != NULL);
|
||||
}
|
||||
for (i = 0 ; i < 50 ; i++) {
|
||||
isc_mempool_put(mp2, items2[i]);
|
||||
items2[i] = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Free all the other items and blow away this pool.
|
||||
*/
|
||||
for (i = 11 ; i < 30 ; i++) {
|
||||
isc_mempool_put(mp1, items1[i]);
|
||||
items1[i] = NULL;
|
||||
}
|
||||
|
||||
isc_mempool_destroy(&mp1);
|
||||
|
||||
isc_mem_stats(mctx, stderr);
|
||||
|
||||
isc_mempool_destroy(&mp2);
|
||||
|
||||
isc_mem_stats(mctx, stderr);
|
||||
|
||||
isc_mem_destroy(&mctx);
|
||||
|
||||
return (0);
|
||||
}
|
||||
Loading…
Reference in a new issue