test/malloc: add bad parameter tests for realloc
authorAnatoly Burakov <anatoly.burakov@intel.com>
Thu, 2 Apr 2020 09:02:15 +0000 (10:02 +0100)
committerDavid Marchand <david.marchand@redhat.com>
Tue, 21 Apr 2020 12:57:40 +0000 (14:57 +0200)
Realloc did not have bad parameter autotest. Add them.

Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com>
Reviewed-by: David Christensen <drc@linux.vnet.ibm.com>
app/test/test_malloc.c

index d6c4c4f..40a2f50 100644 (file)
@@ -828,6 +828,11 @@ test_malloc_bad_params(void)
        if (bad_ptr != NULL)
                goto err_return;
 
+       /* rte_realloc expected to return null with inappropriate size */
+       bad_ptr = rte_realloc(NULL, size, align);
+       if (bad_ptr != NULL)
+               goto err_return;
+
        /* rte_malloc expected to return null with inappropriate alignment */
        align = 17;
        size = 1024;
@@ -836,6 +841,11 @@ test_malloc_bad_params(void)
        if (bad_ptr != NULL)
                goto err_return;
 
+       /* rte_realloc expected to return null with inappropriate alignment */
+       bad_ptr = rte_realloc(NULL, size, align);
+       if (bad_ptr != NULL)
+               goto err_return;
+
        return 0;
 
 err_return: