a1ee7838e1
Rename labels from FOO to label_foo in order to avoid system macro definitions, in particular OUT and ERROR on mingw. Reported by Mike Hommey.
67 lines
1.2 KiB
C
67 lines
1.2 KiB
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <assert.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
|
|
#define JEMALLOC_MANGLE
|
|
#include "jemalloc_test.h"
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
int ret, err;
|
|
size_t sz, lg_chunk, chunksize, i;
|
|
char *p, *q;
|
|
|
|
fprintf(stderr, "Test begin\n");
|
|
|
|
sz = sizeof(lg_chunk);
|
|
if ((err = mallctl("opt.lg_chunk", &lg_chunk, &sz, NULL, 0))) {
|
|
assert(err != ENOENT);
|
|
fprintf(stderr, "%s(): Error in mallctl(): %s\n", __func__,
|
|
strerror(err));
|
|
ret = 1;
|
|
goto label_return;
|
|
}
|
|
chunksize = ((size_t)1U) << lg_chunk;
|
|
|
|
p = (char *)malloc(chunksize);
|
|
if (p == NULL) {
|
|
fprintf(stderr, "malloc(%zu) --> %p\n", chunksize, p);
|
|
ret = 1;
|
|
goto label_return;
|
|
}
|
|
memset(p, 'a', chunksize);
|
|
|
|
q = (char *)realloc(p, chunksize * 2);
|
|
if (q == NULL) {
|
|
fprintf(stderr, "realloc(%p, %zu) --> %p\n", p, chunksize * 2,
|
|
q);
|
|
ret = 1;
|
|
goto label_return;
|
|
}
|
|
for (i = 0; i < chunksize; i++) {
|
|
assert(q[i] == 'a');
|
|
}
|
|
|
|
p = q;
|
|
|
|
q = (char *)realloc(p, chunksize);
|
|
if (q == NULL) {
|
|
fprintf(stderr, "realloc(%p, %zu) --> %p\n", p, chunksize, q);
|
|
ret = 1;
|
|
goto label_return;
|
|
}
|
|
for (i = 0; i < chunksize; i++) {
|
|
assert(q[i] == 'a');
|
|
}
|
|
|
|
free(q);
|
|
|
|
ret = 0;
|
|
label_return:
|
|
fprintf(stderr, "Test end\n");
|
|
return (ret);
|
|
}
|