]> xenbits.xensource.com Git - libvirt.git/commitdiff
tests: viralloc: Remove testDispose case
authorPeter Krempa <pkrempa@redhat.com>
Mon, 1 Feb 2021 13:16:54 +0000 (14:16 +0100)
committerPeter Krempa <pkrempa@redhat.com>
Wed, 3 Feb 2021 12:07:13 +0000 (13:07 +0100)
The VIR_DISPOSE* APIs will be phased out. Additionally the test isn't
really doing useful work in ensuring that the values are indeed cleared
thus there's no point in keeping it around.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
tests/viralloctest.c

index 8ea98b8eca519c06301c374ff27351da4db0ecc3..0867be8ce18eccfbdc4f7153277d8206db0144c2 100644 (file)
@@ -312,38 +312,6 @@ testInsertArray(const void *opaque G_GNUC_UNUSED)
 }
 
 
-static int
-testDispose(const void *opaque G_GNUC_UNUSED)
-{
-    int *num = NULL;
-    int *nums = NULL;
-    size_t nnums = 0;
-    char *str = NULL;
-
-    VIR_DISPOSE(num);
-    VIR_DISPOSE_N(nums, nnums);
-    VIR_DISPOSE_STRING(str);
-
-    nnums = 10;
-    VIR_DISPOSE_N(nums, nnums);
-
-    num = g_new0(int, 1);
-
-    VIR_DISPOSE(num);
-
-    nnums = 10;
-    nums = g_new0(int, nnums);
-
-    VIR_DISPOSE_N(nums, nnums);
-
-    str = g_strdup("test");
-
-    VIR_DISPOSE_STRING(str);
-
-    return 0;
-}
-
-
 static int
 mymain(void)
 {
@@ -357,8 +325,6 @@ mymain(void)
         ret = -1;
     if (virTestRun("insert array", testInsertArray, NULL) < 0)
         ret = -1;
-    if (virTestRun("dispose tests", testDispose, NULL) < 0)
-        ret = -1;
 
     return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
 }