This patch supports rte_memarea_dump() test.

Signed-off-by: Chengwen Feng <fengcheng...@huawei.com>
---
 app/test/test_memarea.c | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/app/test/test_memarea.c b/app/test/test_memarea.c
index 866b86165f..a07fb4424f 100644
--- a/app/test/test_memarea.c
+++ b/app/test/test_memarea.c
@@ -259,6 +259,38 @@ test_memarea_alloc_free(void)
        return 0;
 }
 
+static int
+test_memarea_dump(void)
+{
+       struct rte_memarea_param init;
+       struct rte_memarea *ma;
+       int ret;
+
+       /* prepare env */
+       test_memarea_init_def_param(&init);
+       init.source = RTE_MEMAREA_SOURCE_SYSTEM_API;
+       init.total_sz = MEMAREA_TEST_DEFAULT_SIZE;
+       ma = rte_memarea_create(&init);
+       RTE_TEST_ASSERT(ma != NULL, "Expected Non-NULL");
+
+       /* test for invalid parameters */
+       ret = rte_memarea_dump(NULL, stderr, false);
+       RTE_TEST_ASSERT(ret == -EINVAL, "Expected EINVAL");
+       ret = rte_memarea_dump(ma, NULL, false);
+       RTE_TEST_ASSERT(ret == -EINVAL, "Expected EINVAL");
+
+       /* test for dump */
+       (void)rte_memarea_alloc(ma, 1, 0);
+       (void)rte_memarea_alloc(ma, 1, 0);
+       (void)rte_memarea_alloc(ma, 1, 0);
+       ret = rte_memarea_dump(ma, stderr, true);
+       RTE_TEST_ASSERT(ret == 0, "Expected ZERO");
+
+       rte_memarea_destroy(ma);
+
+       return 0;
+}
+
 static int
 test_memarea(void)
 {
@@ -267,6 +299,7 @@ test_memarea(void)
        MEMAREA_TEST_API_RUN(test_memarea_alloc_fail);
        MEMAREA_TEST_API_RUN(test_memarea_free_fail);
        MEMAREA_TEST_API_RUN(test_memarea_alloc_free);
+       MEMAREA_TEST_API_RUN(test_memarea_dump);
        return 0;
 }
 
-- 
2.17.1

Reply via email to