[PATCH] domaincapstest: Return EXIT_SUCCESS / EXIT_FAILURE instead of -1

The value is used as return value for the process itself. Signed-off-by: Peter Krempa <pkrempa@redhat.com> --- tests/domaincapstest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/domaincapstest.c b/tests/domaincapstest.c index 7a082705c6..65d9f4c635 100644 --- a/tests/domaincapstest.c +++ b/tests/domaincapstest.c @@ -475,7 +475,7 @@ mymain(void) DO_TEST_BHYVE("fbuf", "/usr/sbin/bhyve", &bhyve_caps, VIR_DOMAIN_VIRT_BHYVE); #endif /* WITH_BHYVE */ - return ret; + return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE; } #if WITH_QEMU -- 2.29.2

On Tue, Mar 09, 2021 at 12:54:55 +0100, Peter Krempa wrote:
The value is used as return value for the process itself.
Signed-off-by: Peter Krempa <pkrempa@redhat.com> --- tests/domaincapstest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/domaincapstest.c b/tests/domaincapstest.c index 7a082705c6..65d9f4c635 100644 --- a/tests/domaincapstest.c +++ b/tests/domaincapstest.c @@ -475,7 +475,7 @@ mymain(void) DO_TEST_BHYVE("fbuf", "/usr/sbin/bhyve", &bhyve_caps, VIR_DOMAIN_VIRT_BHYVE); #endif /* WITH_BHYVE */
- return ret; + return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE; }
#if WITH_QEMU
Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
participants (2)
-
Jiri Denemark
-
Peter Krempa