[libvirt PATCH v2 1/7] tests: Fix false positive in testConfRoundTrip.

Ján Tomko jtomko at redhat.com
Mon Sep 14 15:30:39 UTC 2020


On a Monday in 2020, Tim Wiederhake wrote:
>testConfRoundTrip would return 0 (success) if virConfWriteMem returned 0 (nothing
>written) and virTestCompareToFile failed.
>

s/returned 0/succeeded/

The caller treats all non-negative values as a success. (as is usual in
the codebase)

Jano

>Signed-off-by: Tim Wiederhake <twiederh at redhat.com>
>---
> tests/virconftest.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
>diff --git a/tests/virconftest.c b/tests/virconftest.c
>index ab29b5b712..cac3718495 100644
>--- a/tests/virconftest.c
>+++ b/tests/virconftest.c
>@@ -51,8 +51,7 @@ static int testConfRoundTrip(const void *opaque)
>         fprintf(stderr, "Failed to process %s\n", srcfile);
>         goto cleanup;
>     }
>-    ret = virConfWriteMem(buffer, &len, conf);
>-    if (ret < 0) {
>+    if (virConfWriteMem(buffer, &len, conf) < 0) {
>         fprintf(stderr, "Failed to serialize %s back\n", srcfile);
>         goto cleanup;
>     }
>-- 
>2.26.2
>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 488 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20200914/abece560/attachment-0001.sig>


More information about the libvir-list mailing list