aboutsummaryrefslogtreecommitdiffstats
path: root/test/test/commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/test/commands.c')
-rw-r--r--test/test/commands.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/test/commands.c b/test/test/commands.c
index cf0b726b..94fbc310 100644
--- a/test/test/commands.c
+++ b/test/test/commands.c
@@ -132,11 +132,13 @@ static void cmd_dump_parsed(void *parsed_result,
else if (!strcmp(res->dump, "dump_mempool"))
rte_mempool_list_dump(stdout);
else if (!strcmp(res->dump, "dump_devargs"))
- rte_eal_devargs_dump(stdout);
+ rte_devargs_dump(stdout);
else if (!strcmp(res->dump, "dump_log_types"))
rte_log_dump(stdout);
else if (!strcmp(res->dump, "dump_malloc_stats"))
rte_malloc_dump_stats(stdout, NULL);
+ else if (!strcmp(res->dump, "dump_malloc_heaps"))
+ rte_malloc_dump_heaps(stdout);
}
cmdline_parse_token_string_t cmd_dump_dump =
@@ -147,6 +149,7 @@ cmdline_parse_token_string_t cmd_dump_dump =
"dump_ring#"
"dump_mempool#"
"dump_malloc_stats#"
+ "dump_malloc_heaps#"
"dump_devargs#"
"dump_log_types");