2019-10-27 02:04:46 +08:00
|
|
|
#include "test/jemalloc_test.h"
|
|
|
|
|
|
|
|
static size_t
|
|
|
|
zero_reallocs() {
|
|
|
|
if (!config_stats) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
size_t count = 12345;
|
|
|
|
size_t sz = sizeof(count);
|
|
|
|
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctl("stats.zero_reallocs", (void *)&count, &sz,
|
2019-10-27 02:04:46 +08:00
|
|
|
NULL, 0), 0, "Unexpected mallctl failure");
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_BEGIN(test_zero_reallocs) {
|
|
|
|
test_skip_if(!config_stats);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < 100; ++i) {
|
|
|
|
void *ptr = mallocx(i * i + 1, 0);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_ptr_not_null(ptr, "Unexpected mallocx error");
|
2019-10-27 02:04:46 +08:00
|
|
|
size_t count = zero_reallocs();
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_zu_eq(i, count, "Incorrect zero realloc count");
|
2019-10-27 02:04:46 +08:00
|
|
|
ptr = realloc(ptr, 0);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_ptr_null(ptr, "Realloc didn't free");
|
2019-10-27 02:04:46 +08:00
|
|
|
count = zero_reallocs();
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_zu_eq(i + 1, count, "Realloc didn't adjust count");
|
2019-10-27 02:04:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
TEST_END
|
|
|
|
|
|
|
|
int
|
|
|
|
main(void) {
|
|
|
|
/*
|
|
|
|
* We expect explicit counts; reentrant tests run multiple times, so
|
|
|
|
* counts leak across runs.
|
|
|
|
*/
|
|
|
|
return test_no_reentrancy(
|
|
|
|
test_zero_reallocs);
|
|
|
|
}
|