From 016b2ad5352de399af167a1acb6042cee31f8fbe Mon Sep 17 00:00:00 2001 From: Daan Leijen Date: Sat, 9 Apr 2022 14:08:27 -0700 Subject: [PATCH] nicer heap walk test --- test/main-override-static.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/main-override-static.c b/test/main-override-static.c index e64b987b..a5088d3a 100644 --- a/test/main-override-static.c +++ b/test/main-override-static.c @@ -194,7 +194,12 @@ static void alloc_huge(void) { } static bool test_visit(const mi_heap_t* heap, const mi_heap_area_t* area, void* block, size_t block_size, void* arg) { - printf("I'm visiting a block of size %zu, allocated size %zu\n", block_size, mi_usable_size(block)); + if (block == NULL) { + printf("visiting an area with blocks of size %zu (including padding)\n", area->full_block_size); + } + else { + printf(" block of size %zu (allocated size is %zu)\n", block_size, mi_usable_size(block)); + } return true; }