mirror of
https://github.com/fluencelabs/redis
synced 2025-06-25 15:01:33 +00:00
deps
hiredis
jemalloc
bin
doc
include
src
test
include
integration
MALLOCX_ARENA.c
aligned_alloc.c
allocated.c
chunk.c
mallocx.c
overflow.c
posix_memalign.c
rallocx.c
sdallocx.c
thread_arena.c
thread_tcache_enabled.c
xallocx.c
src
stress
unit
test.sh.in
.autom4te.cfg
.gitattributes
.gitignore
COPYING
ChangeLog
INSTALL
Makefile.in
README
VERSION
autogen.sh
config.guess
config.stamp.in
config.sub
configure
configure.ac
coverage.sh
install-sh
jemalloc.pc.in
linenoise
lua
Makefile
README.md
update-jemalloc.sh
src
tests
utils
.gitignore
00-RELEASENOTES
BUGS
CONTRIBUTING
COPYING
INSTALL
MANIFESTO
Makefile
README.md
redis.conf
runtest
runtest-cluster
runtest-sentinel
sentinel.conf
50 lines
1.3 KiB
C
50 lines
1.3 KiB
C
#include "test/jemalloc_test.h"
|
|
|
|
TEST_BEGIN(test_overflow)
|
|
{
|
|
unsigned nhchunks;
|
|
size_t mib[4];
|
|
size_t sz, miblen, max_size_class;
|
|
void *p;
|
|
|
|
sz = sizeof(unsigned);
|
|
assert_d_eq(mallctl("arenas.nhchunks", &nhchunks, &sz, NULL, 0), 0,
|
|
"Unexpected mallctl() error");
|
|
|
|
miblen = sizeof(mib) / sizeof(size_t);
|
|
assert_d_eq(mallctlnametomib("arenas.hchunk.0.size", mib, &miblen), 0,
|
|
"Unexpected mallctlnametomib() error");
|
|
mib[2] = nhchunks - 1;
|
|
|
|
sz = sizeof(size_t);
|
|
assert_d_eq(mallctlbymib(mib, miblen, &max_size_class, &sz, NULL, 0), 0,
|
|
"Unexpected mallctlbymib() error");
|
|
|
|
assert_ptr_null(malloc(max_size_class + 1),
|
|
"Expected OOM due to over-sized allocation request");
|
|
assert_ptr_null(malloc(SIZE_T_MAX),
|
|
"Expected OOM due to over-sized allocation request");
|
|
|
|
assert_ptr_null(calloc(1, max_size_class + 1),
|
|
"Expected OOM due to over-sized allocation request");
|
|
assert_ptr_null(calloc(1, SIZE_T_MAX),
|
|
"Expected OOM due to over-sized allocation request");
|
|
|
|
p = malloc(1);
|
|
assert_ptr_not_null(p, "Unexpected malloc() OOM");
|
|
assert_ptr_null(realloc(p, max_size_class + 1),
|
|
"Expected OOM due to over-sized allocation request");
|
|
assert_ptr_null(realloc(p, SIZE_T_MAX),
|
|
"Expected OOM due to over-sized allocation request");
|
|
free(p);
|
|
}
|
|
TEST_END
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
|
|
return (test(
|
|
test_overflow));
|
|
}
|