From: Michal Privoznik Date: Thu, 25 Feb 2016 16:13:00 +0000 (+0100) Subject: seclabeltest: Update to use VIRT_TEST_MAIN X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=cd25acba268af583764839de9db2d49983dce188;p=libvirt.git seclabeltest: Update to use VIRT_TEST_MAIN Our tests should use either VIRT_TEST_MAIN() or VIRT_TEST_MAIN_PRELOAD() macros which create main() function and call the passed callback subsequently. This is important because the wrapper which calls the callback eventually does important stuff like setting logging based on env variables and such. Signed-off-by: Michal Privoznik --- diff --git a/tests/Makefile.am b/tests/Makefile.am index cb72cdf139..75efb902dd 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1190,7 +1190,7 @@ virauthconfigtest_SOURCES = \ virauthconfigtest_LDADD = $(LDADDS) seclabeltest_SOURCES = \ - seclabeltest.c + seclabeltest.c testutils.h testutils.c seclabeltest_LDADD = $(LDADDS) if WITH_SECDRIVER_SELINUX diff --git a/tests/seclabeltest.c b/tests/seclabeltest.c index 6b1e78955a..be6e79ff6a 100644 --- a/tests/seclabeltest.c +++ b/tests/seclabeltest.c @@ -7,9 +7,10 @@ #include #include "security/security_driver.h" #include "virrandom.h" +#include "testutils.h" -int -main(int argc ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED) +static int +mymain(void) { virSecurityManagerPtr mgr; const char *doi, *model; @@ -41,3 +42,5 @@ main(int argc ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED) return 0; } + +VIRT_TEST_MAIN(mymain)