Fix rallocm() test to support >4KiB pages.
This commit is contained in:
parent
8e6f8b490d
commit
30fbef8aea
@ -689,7 +689,7 @@ malloc_init_hard(void)
|
|||||||
|
|
||||||
result = sysconf(_SC_PAGESIZE);
|
result = sysconf(_SC_PAGESIZE);
|
||||||
assert(result != -1);
|
assert(result != -1);
|
||||||
pagesize = (unsigned)result;
|
pagesize = (size_t)result;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* We assume that pagesize is a power of 2 when calculating
|
* We assume that pagesize is a power of 2 when calculating
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <unistd.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <assert.h>
|
||||||
|
|
||||||
#define JEMALLOC_MANGLE
|
#define JEMALLOC_MANGLE
|
||||||
#include "jemalloc_test.h"
|
#include "jemalloc_test.h"
|
||||||
@ -8,12 +10,20 @@
|
|||||||
int
|
int
|
||||||
main(void)
|
main(void)
|
||||||
{
|
{
|
||||||
|
size_t pagesize;
|
||||||
void *p, *q;
|
void *p, *q;
|
||||||
size_t sz, tsz;
|
size_t sz, tsz;
|
||||||
int r;
|
int r;
|
||||||
|
|
||||||
fprintf(stderr, "Test begin\n");
|
fprintf(stderr, "Test begin\n");
|
||||||
|
|
||||||
|
/* Get page size. */
|
||||||
|
{
|
||||||
|
long result = sysconf(_SC_PAGESIZE);
|
||||||
|
assert(result != -1);
|
||||||
|
pagesize = (size_t)result;
|
||||||
|
}
|
||||||
|
|
||||||
r = JEMALLOC_P(allocm)(&p, &sz, 42, 0);
|
r = JEMALLOC_P(allocm)(&p, &sz, 42, 0);
|
||||||
if (r != ALLOCM_SUCCESS) {
|
if (r != ALLOCM_SUCCESS) {
|
||||||
fprintf(stderr, "Unexpected allocm() error\n");
|
fprintf(stderr, "Unexpected allocm() error\n");
|
||||||
@ -66,7 +76,7 @@ main(void)
|
|||||||
p = q;
|
p = q;
|
||||||
sz = tsz;
|
sz = tsz;
|
||||||
|
|
||||||
r = JEMALLOC_P(rallocm)(&q, &tsz, 8192, 0, 0);
|
r = JEMALLOC_P(rallocm)(&q, &tsz, pagesize*2, 0, 0);
|
||||||
if (r != ALLOCM_SUCCESS)
|
if (r != ALLOCM_SUCCESS)
|
||||||
fprintf(stderr, "Unexpected rallocm() error\n");
|
fprintf(stderr, "Unexpected rallocm() error\n");
|
||||||
if (q == p)
|
if (q == p)
|
||||||
@ -78,7 +88,7 @@ main(void)
|
|||||||
p = q;
|
p = q;
|
||||||
sz = tsz;
|
sz = tsz;
|
||||||
|
|
||||||
r = JEMALLOC_P(rallocm)(&q, &tsz, 16384, 0, 0);
|
r = JEMALLOC_P(rallocm)(&q, &tsz, pagesize*4, 0, 0);
|
||||||
if (r != ALLOCM_SUCCESS)
|
if (r != ALLOCM_SUCCESS)
|
||||||
fprintf(stderr, "Unexpected rallocm() error\n");
|
fprintf(stderr, "Unexpected rallocm() error\n");
|
||||||
if (tsz == sz) {
|
if (tsz == sz) {
|
||||||
@ -88,7 +98,7 @@ main(void)
|
|||||||
p = q;
|
p = q;
|
||||||
sz = tsz;
|
sz = tsz;
|
||||||
|
|
||||||
r = JEMALLOC_P(rallocm)(&q, &tsz, 8192, 0, ALLOCM_NO_MOVE);
|
r = JEMALLOC_P(rallocm)(&q, &tsz, pagesize*2, 0, ALLOCM_NO_MOVE);
|
||||||
if (r != ALLOCM_SUCCESS)
|
if (r != ALLOCM_SUCCESS)
|
||||||
fprintf(stderr, "Unexpected rallocm() error\n");
|
fprintf(stderr, "Unexpected rallocm() error\n");
|
||||||
if (q != p)
|
if (q != p)
|
||||||
@ -99,7 +109,7 @@ main(void)
|
|||||||
}
|
}
|
||||||
sz = tsz;
|
sz = tsz;
|
||||||
|
|
||||||
r = JEMALLOC_P(rallocm)(&q, &tsz, 16384, 0, ALLOCM_NO_MOVE);
|
r = JEMALLOC_P(rallocm)(&q, &tsz, pagesize*4, 0, ALLOCM_NO_MOVE);
|
||||||
if (r != ALLOCM_SUCCESS)
|
if (r != ALLOCM_SUCCESS)
|
||||||
fprintf(stderr, "Unexpected rallocm() error\n");
|
fprintf(stderr, "Unexpected rallocm() error\n");
|
||||||
if (q != p)
|
if (q != p)
|
||||||
|
Loading…
Reference in New Issue
Block a user