diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-01-21 22:52:54 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-01-21 22:52:54 +0100 |
| commit | dcacc00e3750300617ba6e16eb346713f91a783a (patch) | |
| tree | 38e2d4fb5ed9d119711d4295c6eda4b014af73fd /examples/redis-unstable/deps/jemalloc/test/unit/zero_reallocs.c | |
| parent | 58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff) | |
| download | crep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz | |
Remove testing data
Diffstat (limited to 'examples/redis-unstable/deps/jemalloc/test/unit/zero_reallocs.c')
| -rw-r--r-- | examples/redis-unstable/deps/jemalloc/test/unit/zero_reallocs.c | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/examples/redis-unstable/deps/jemalloc/test/unit/zero_reallocs.c b/examples/redis-unstable/deps/jemalloc/test/unit/zero_reallocs.c deleted file mode 100644 index 66c7a40..0000000 --- a/examples/redis-unstable/deps/jemalloc/test/unit/zero_reallocs.c +++ /dev/null @@ -1,40 +0,0 @@ -#include "test/jemalloc_test.h" - -static size_t -zero_reallocs() { - if (!config_stats) { - return 0; - } - size_t count = 12345; - size_t sz = sizeof(count); - - expect_d_eq(mallctl("stats.zero_reallocs", (void *)&count, &sz, - 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); - expect_ptr_not_null(ptr, "Unexpected mallocx error"); - size_t count = zero_reallocs(); - expect_zu_eq(i, count, "Incorrect zero realloc count"); - ptr = realloc(ptr, 0); - expect_ptr_null(ptr, "Realloc didn't free"); - count = zero_reallocs(); - expect_zu_eq(i + 1, count, "Realloc didn't adjust count"); - } -} -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); -} |
