]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
bhyveargv2xmltest: Fix call of virDomainDefCheckABIStability
authorMichal Privoznik <mprivozn@redhat.com>
Mon, 5 Jun 2017 09:46:02 +0000 (11:46 +0200)
committerMichal Privoznik <mprivozn@redhat.com>
Mon, 5 Jun 2017 09:46:02 +0000 (11:46 +0200)
In 4f0aeed I've expanded the list of arguments for
virDomainDefCheckABIStability() but I forgot to fix
bhyveargv2xmltest.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
tests/bhyveargv2xmltest.c

index bde7d0e05d0bfea169bec47e09d0a82e69fac0e6..9db3750aca1458b91b035871170235cc890e59ca 100644 (file)
@@ -74,7 +74,7 @@ testCompareXMLToArgvFiles(const char *xmlfile,
         }
     }
 
-    if (vmdef && !virDomainDefCheckABIStability(vmdef, vmdef)) {
+    if (vmdef && !virDomainDefCheckABIStability(vmdef, vmdef, driver.xmlopt)) {
         VIR_TEST_DEBUG("ABI stability check failed on %s", xmlfile);
         goto fail;
     }