networkxml2conftest: Check if capabilities were created successfully

Now that looking up dnsmasq is handled/mocked we can start
checking whether dnsmasq capabilities were built successfully and
error out if that wasn't the case.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Andrea Bolognani <abologna@redhat.com>
This commit is contained in:
Michal Privoznik 2022-01-17 13:14:45 +01:00
parent ec9ee676b4
commit 2fc6adcb30

View File

@ -147,7 +147,11 @@ mymain(void)
int ret = 0;
g_autoptr(dnsmasqCaps) full = NULL;
full = buildCaps();
if (!(full = buildCaps())) {
fprintf(stderr, "failed to create the fake capabilities: %s",
virGetLastErrorMessage());
return EXIT_FAILURE;
}
#define DO_TEST(xname, xcaps) \
do { \