tests: viralloc: Remove testDispose case

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>
This commit is contained in:
Peter Krempa 2021-02-01 14:16:54 +01:00
parent 8bac46997f
commit f08fea10fb

View 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;
}