mbuf: remove rte_ctrlmbuf
[dpdk.git] / app / test / test_malloc.c
index bf27eff..ee34ca3 100644 (file)
@@ -486,7 +486,7 @@ test_realloc(void)
                printf("NULL pointer returned from rte_zmalloc\n");
                return -1;
        }
-       rte_snprintf(ptr1, size1, "%s" ,hello_str);
+       snprintf(ptr1, size1, "%s" ,hello_str);
        char *ptr2 = rte_realloc(ptr1, size2, CACHE_LINE_SIZE);
        if (!ptr2){
                rte_free(ptr1);
@@ -924,7 +924,7 @@ test_alloc_socket(void)
        return 0;
 }
 
-int
+static int
 test_malloc(void)
 {
        unsigned lcore_id;
@@ -1045,3 +1045,9 @@ test_malloc(void)
 
        return 0;
 }
+
+static struct test_command malloc_cmd = {
+       .command = "malloc_autotest",
+       .callback = test_malloc,
+};
+REGISTER_TEST_COMMAND(malloc_cmd);